diff options
author | Jim Meyering <jim@meyering.net> | 1995-06-24 22:02:25 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-06-24 22:02:25 +0000 |
commit | 7981e85eb3546acb2d4d6cd634330d8581ecc9de (patch) | |
tree | 7ee26a4b5d11ba8d27626beb79d22d1fc9a83a5c | |
parent | 1d7e1a535be6d1a487b92202bc21db790f0fc733 (diff) | |
download | coreutils-7981e85eb3546acb2d4d6cd634330d8581ecc9de.tar.xz |
merge with 1.12a
-rw-r--r-- | lib/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regex.c b/lib/regex.c index 1cf919696..04919abe2 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -76,7 +76,7 @@ char *realloc (); This is used in most programs--a few other programs avoid this by defining INHIBIT_STRING_HEADER. */ #ifndef INHIBIT_STRING_HEADER -#if HAVE_STRING_H || STDC_HEADERS || defined (_LIBC) +#if defined (HAVE_STRING_H) || defined (STDC_HEADERS) || defined (_LIBC) #include <string.h> #ifndef bcmp #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n)) |