* config/powerpc/tm-ppc-eabi.h (TEXT_SEGMENT_BASE): Define as 1.
- * dcache.c (insque, remque): If compiling in standard C, protect
- insque and remque with macros to cast the pointer arguments to the
- proper type. This is for systems like Linux, that define insque
- and remque with prototypes in system header files.
+ * dcache.c (insque, remque): If compiling in standard C on Linux,
+ protect insque and remque with macros to cast the pointer
+ arguments to the proper type.
Tue Feb 14 17:16:41 1995 Stu Grossman (grossman@cygnus.com)
#include "dcache.h"
#include "gdbcmd.h"
-#ifdef __STDC__
+#if defined(__STDC__) && defined(__linux__)
/* In case the system header files define a prototype for insque and
remque that uses a pointer to a struct qelem, silence the warnings */
struct qelem;