diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-06-07 19:29:12 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-06-07 19:29:12 -0700 |
commit | 78a7a068403db34cfc96a4051a2798883a059688 (patch) | |
tree | 727e8a07e3153e2048208604b7a6656ce5221e25 /configure.in | |
parent | 5e7d4a75cb7ff4c2cc570f6047e8e3defeb55cdb (diff) | |
download | emacs-78a7a068403db34cfc96a4051a2798883a059688.tar.gz |
Include <strings.h> and <string.h> instead of
"strings.h" and "string.h".
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 3e3d3ddd972..5de13ff065f 100644 --- a/configure.in +++ b/configure.in @@ -3610,11 +3610,11 @@ extern char *getenv (); #endif /* __P */ #ifdef HAVE_STRING_H -#include "string.h" +#include <string.h> #endif #ifdef HAVE_STRINGS_H -#include "strings.h" /* May be needed for bcopy & al. */ +#include <strings.h> /* May be needed for bcopy & al. */ #endif #ifdef HAVE_STDLIB_H |