projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51f9f34
)
Use `defined' to test HAVE_STRING_H and STDC_HEADERS.
author
Richard Stallman
<rms@gnu.org>
Tue, 20 Jun 1995 03:11:14 +0000
(
03:11
+0000)
committer
Richard Stallman
<rms@gnu.org>
Tue, 20 Jun 1995 03:11:14 +0000
(
03:11
+0000)
regex.c
patch
|
blob
|
history
diff --git
a/regex.c
b/regex.c
index e6d614524c9e313406e2c1b8256d2d37208c166a..144c984e98ca7f06e474733e3d8b4e0e0303bc99 100644
(file)
--- a/
regex.c
+++ b/
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))