Include <strings.h> and <string.h> instead of
authorDan Nicolaescu <dann@ics.uci.edu>
Tue, 8 Jun 2010 02:29:12 +0000 (19:29 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Tue, 8 Jun 2010 02:29:12 +0000 (19:29 -0700)
"strings.h" and "string.h".

ChangeLog
configure.in
src/config.in

index 368fad0..e960554 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-06-08  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * configure.in: Include <strings.h> and <string.h> instead of
+       "strings.h" and "string.h".
+
 2010-06-06  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * configure.in: Remove code dealing with BSTRING.
index 3e3d3dd..5de13ff 100644 (file)
@@ -3610,11 +3610,11 @@ extern char *getenv ();
 #endif /* __P */
 
 #ifdef HAVE_STRING_H
-#include "string.h"
+#include <string.h>
 #endif
 
 #ifdef HAVE_STRINGS_H
-#include "strings.h"  /* May be needed for bcopy & al.  */
+#include <strings.h>  /* May be needed for bcopy & al.  */
 #endif
 
 #ifdef HAVE_STDLIB_H
index 997e466..3fa3c30 100644 (file)
@@ -1141,11 +1141,11 @@ extern char *getenv ();
 #endif /* __P */
 
 #ifdef HAVE_STRING_H
-#include "string.h"
+#include <string.h>
 #endif
 
 #ifdef HAVE_STRINGS_H
-#include "strings.h"  /* May be needed for bcopy & al.  */
+#include <strings.h>  /* May be needed for bcopy & al.  */
 #endif
 
 #ifdef HAVE_STDLIB_H