Mercurial > emacs
changeset 20518:43c51bf05a49
(HAVE_STRING_H): Add #undef.
[HAVE_STRING_H]: Include string.h.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 26 Dec 1997 10:41:25 +0000 |
parents | 40bfe766d355 |
children | c7b3ef0ed1ad |
files | src/config.in |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/config.in Fri Dec 26 10:38:56 1997 +0000 +++ b/src/config.in Fri Dec 26 10:41:25 1997 +0000 @@ -25,7 +25,6 @@ #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 @@ #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 @@ #ifndef BITS_PER_LONG #define BITS_PER_LONG 32 #endif + +#ifdef HAVE_STRING_H +#include "string.h" +#endif