diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-12-26 10:41:25 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-12-26 10:41:25 +0000 |
commit | d2e9bfae622a0e2411632a8fbec4ddc49c5812eb (patch) | |
tree | 070587aaa2deaf7bc5e56a90a6df832b2c8ae65f /src/config.in | |
parent | dd9cda060f2186a86728ef59909aa7f368e5be34 (diff) | |
download | emacs-d2e9bfae622a0e2411632a8fbec4ddc49c5812eb.tar.gz |
(HAVE_STRING_H): Add #undef.
[HAVE_STRING_H]: Include string.h.
Diffstat (limited to 'src/config.in')
-rw-r--r-- | src/config.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/config.in b/src/config.in index bb6a2c57603..007f24ead5b 100644 --- a/src/config.in +++ b/src/config.in @@ -25,7 +25,6 @@ Boston, MA 02111-1307, USA. */ #ifndef EMACS_CONFIG_H #define EMACS_CONFIG_H - /* These are all defined in the top-level Makefile by configure. They're here only for reference. */ @@ -131,6 +130,7 @@ Boston, MA 02111-1307, USA. */ #undef HAVE_SYS_SYSTEMINFO_H #undef HAVE_TERMIOS_H #undef HAVE_LIMITS_H +#undef HAVE_STRING_H #undef STDC_HEADERS #undef TIME_WITH_SYS_TIME @@ -404,3 +404,7 @@ extern char *getenv (); #ifndef BITS_PER_LONG #define BITS_PER_LONG 32 #endif + +#ifdef HAVE_STRING_H +#include "string.h" +#endif |