changeset 24:7f41c8e3de0d

*** empty log message ***
author David J. MacKenzie <djm@gnu.org>
date Tue, 24 Nov 1992 14:17:32 +0000
parents 849ea86e132b
children d827a25d0561
files configure.in regex.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in
+++ b/configure.in
@@ -13,7 +13,7 @@
 AC_MINIX
 
 AC_STDC_HEADERS
-AC_USG
+AC_HAVE_HEADERS(string.h)
 
 AC_ALLOCA
 AC_CONST
--- 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 <string.h>
 #ifndef bcmp
 #define bcmp(s1, s2, n)	memcmp ((s1), (s2), (n))