From: David J. MacKenzie Date: Tue, 24 Nov 1992 14:17:32 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfae0f7e35254806ebd903c58072aa714068e9c3;p=pspp *** empty log message *** --- diff --git a/configure.in b/configure.in index f087c0fb97..f0fc780250 100644 --- a/configure.in +++ b/configure.in @@ -13,7 +13,7 @@ AC_ISC_POSIX AC_MINIX AC_STDC_HEADERS -AC_USG +AC_HAVE_HEADERS(string.h) AC_ALLOCA AC_CONST diff --git a/regex.c b/regex.c index 112e0d6d7a..f6720da20a 100644 --- a/regex.c +++ b/regex.c @@ -45,7 +45,7 @@ /* We used to test for `BSTRING' here, but only GCC and Emacs define `BSTRING', as far as I know, and neither of them use this code. */ -#if USG || STDC_HEADERS +#if HAVE_STRING_H || STDC_HEADERS #include #ifndef bcmp #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))