diff options
| author | Dan Nicolaescu | 2010-06-07 19:29:12 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-06-07 19:29:12 -0700 |
| commit | 78a7a068403db34cfc96a4051a2798883a059688 (patch) | |
| tree | 727e8a07e3153e2048208604b7a6656ce5221e25 /src | |
| parent | 5e7d4a75cb7ff4c2cc570f6047e8e3defeb55cdb (diff) | |
| download | emacs-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.in | 4 |
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 |