aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2010-06-07 19:29:12 -0700
committerDan Nicolaescu2010-06-07 19:29:12 -0700
commit78a7a068403db34cfc96a4051a2798883a059688 (patch)
tree727e8a07e3153e2048208604b7a6656ce5221e25 /src
parent5e7d4a75cb7ff4c2cc570f6047e8e3defeb55cdb (diff)
downloademacs-78a7a068403db34cfc96a4051a2798883a059688.tar.gz
emacs-78a7a068403db34cfc96a4051a2798883a059688.zip
Include <strings.h> and <string.h> instead of
"strings.h" and "string.h".
Diffstat (limited to 'src')
-rw-r--r--src/config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.in b/src/config.in
index 997e4668421..3fa3c30ce0e 100644
--- a/src/config.in
+++ b/src/config.in
@@ -1141,11 +1141,11 @@ extern char *getenv ();
1141#endif /* __P */ 1141#endif /* __P */
1142 1142
1143#ifdef HAVE_STRING_H 1143#ifdef HAVE_STRING_H
1144#include "string.h" 1144#include <string.h>
1145#endif 1145#endif
1146 1146
1147#ifdef HAVE_STRINGS_H 1147#ifdef HAVE_STRINGS_H
1148#include "strings.h" /* May be needed for bcopy & al. */ 1148#include <strings.h> /* May be needed for bcopy & al. */
1149#endif 1149#endif
1150 1150
1151#ifdef HAVE_STDLIB_H 1151#ifdef HAVE_STDLIB_H