]> git.eshelyaron.com Git - emacs.git/commitdiff
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 f5f29fe3a0e0e0445574160628a978cd66be2600..e1409200dbcb853b27cc3cef6c5d256fc4f892be 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 5bd16a0b408a07b3c66db29db5fe5d1e623004f6..28ac8421694425b9009cfd272aa5c0e82dd4a7c9 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 93d4fba171649e764696cbd50801d887ce6a4adf..4144c34d9afaa66f06f3aa8331ab5eef3b80c2fa 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 b2cdbeb0b8c5076d3fc41fb041302fa350b0ccd6..a83d3fcb4179bcc2faacefd4d7f700d8986a653b 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.