Don't include alloca.h.
authorDave Love <fx@gnu.org>
Mon, 18 Nov 2002 16:37:53 +0000 (16:37 +0000)
committerDave Love <fx@gnu.org>
Mon, 18 Nov 2002 16:37:53 +0000 (16:37 +0000)
src/m/powerpcle.h
src/m/sparc.h
src/s/irix4-0.h
src/s/irix5-0.h

index f5f29fe..e140920 100644 (file)
@@ -54,11 +54,5 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
 
-#ifndef NOT_C_CODE
-#if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly.  */
-#include <alloca.h>
-#endif
-#endif
-
 /* Control a conditional in unexelf.c.  */
 #define SOLARIS_POWERPC
index 5bd16a0..28ac842 100644 (file)
@@ -59,12 +59,6 @@ NOTE-END  */
 
 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
 
-#ifndef NOT_C_CODE
-#if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly.  */
-#include <alloca.h>
-#endif
-#endif
-
 /* Mask for address bits within a memory segment */
 
 #define SEGMENT_MASK (SEGSIZ - 1)
index 93d4fba..4144c34 100644 (file)
@@ -5,10 +5,6 @@
 /* XPointer is not defined in the older X headers  -- JPff@maths.bath.ac.uk */
 #define XPointer caddr_t
 
-#ifndef NOT_C_CODE
-#include <alloca.h>
-#endif
-
 #undef NEED_SIOCTL
 
 /* Include unistd.h, even though we don't define POSIX.  */
index b2cdbeb..a83d3fc 100644 (file)
 /* Make process_send_signal work by "typing" a signal character on the pty.  */
 #define SIGNALS_VIA_CHARACTERS
 
-#ifndef NOT_C_CODE
-#ifndef __GNUC__
-#include <alloca.h>
-#endif
-#endif
-
 /* SGI has all the fancy wait stuff, but we can't include sys/wait.h
    because it defines BIG_ENDIAN and LITTLE_ENDIAN (ugh!.)  Instead
    we'll just define WNOHANG right here.