Mercurial > emacs
changeset 48436:f93e5481ac9d
Don't include alloca.h.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 18 Nov 2002 16:37:53 +0000 |
parents | c5a77f8f5205 |
children | afd7531a5181 |
files | src/m/powerpcle.h src/m/sparc.h src/s/irix4-0.h src/s/irix5-0.h |
diffstat | 4 files changed, 0 insertions(+), 22 deletions(-) [+] |
line wrap: on
line diff
--- a/src/m/powerpcle.h Mon Nov 18 16:34:38 2002 +0000 +++ b/src/m/powerpcle.h Mon Nov 18 16:37:53 2002 +0000 @@ -54,11 +54,5 @@ #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
--- a/src/m/sparc.h Mon Nov 18 16:34:38 2002 +0000 +++ b/src/m/sparc.h Mon Nov 18 16:37:53 2002 +0000 @@ -59,12 +59,6 @@ #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)
--- a/src/s/irix4-0.h Mon Nov 18 16:34:38 2002 +0000 +++ b/src/s/irix4-0.h Mon Nov 18 16:37:53 2002 +0000 @@ -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. */
--- a/src/s/irix5-0.h Mon Nov 18 16:34:38 2002 +0000 +++ b/src/s/irix5-0.h Mon Nov 18 16:37:53 2002 +0000 @@ -29,12 +29,6 @@ /* 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.