diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-10-01 06:56:33 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-10-01 06:56:33 -0700 |
commit | 4cacd822d198d85848348ae85c08fb56f6525116 (patch) | |
tree | 37d3c5dfbfa693aaef0e65965336f2551103d056 /src/config.in | |
parent | 0a887f3950c55887fb86fc45d6ceaf958e5c1f6e (diff) | |
download | emacs-4cacd822d198d85848348ae85c08fb56f6525116.tar.gz |
Do not include stdlib.h and string.h, config.h does it.
* src/xfont.c:
* src/w32term.c:
* src/w32reg.c:
* src/w32inevt.c:
* src/w32heap.c:
* src/w32console.c:
* src/w16select.c:
* src/unexsol.c:
* src/term.c:
* src/sound.c:
* src/scroll.c (m):
* src/gtkutil.c:
* src/font.c:
* src/filelock.c:
* src/fileio.c:
* src/dosfns.c:
* src/dbusbind.c:
* src/bidi.c:
* src/callproc.c:
* src/process.c:
* src/msdos.c:
* src/charset.c: Do not include stdlib.h and string.h, config.h does it.
* configure.in: Include stdlib.h and string.h unconditionally.
Diffstat (limited to 'src/config.in')
-rw-r--r-- | src/config.in | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/config.in b/src/config.in index 43ebb756215..d5eaada59bb 100644 --- a/src/config.in +++ b/src/config.in @@ -1170,13 +1170,8 @@ SYSTEM_PURESIZE_EXTRA seems like the least likely to cause problems. */ not define __STDC__ (e.g. DEC C by default) or may define it as zero. */ #undef PROTOTYPES -#ifdef HAVE_STRING_H #include <string.h> -#endif - -#ifdef HAVE_STDLIB_H #include <stdlib.h> -#endif #ifdef HAVE_ALLOCA_H # include <alloca.h> |