2005-02-11 Joel Sherrill <joel@OARcorp.com>

* m68kpretaskinghook.c: Correct type of symbols from linkcmds to
	compile with gcc 4.x.
This commit is contained in:
Joel Sherrill
2005-02-12 01:35:44 +00:00
parent 3e5323041d
commit c97f5fd759
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2005-02-11 Joel Sherrill <joel@OARcorp.com>
* m68kpretaskinghook.c: Correct type of symbols from linkcmds to
compile with gcc 4.x.
2005-01-28 Eric Norum <norume@aps.anl.gov> 2005-01-28 Eric Norum <norume@aps.anl.gov>
* m68kpretaskinghook.c: Work around agressive optimizing compilers. * m68kpretaskinghook.c: Work around agressive optimizing compilers.

View File

@@ -34,9 +34,9 @@
extern void bsp_libc_init( void *, unsigned long, int ); extern void bsp_libc_init( void *, unsigned long, int );
extern rtems_configuration_table BSP_Configuration; extern rtems_configuration_table BSP_Configuration;
extern char _RamBase[]; extern char _RamBase[];
extern char _WorkspaceBase[]; extern char _WorkspaceBase[];
extern char _HeapSize[]; extern char _HeapSize[];
unsigned long _M68k_Ramsize; unsigned long _M68k_Ramsize;