Include <strings.h> and <string.h> instead of

"strings.h" and "string.h".
This commit is contained in:
Dan Nicolaescu 2010-06-07 19:29:12 -07:00
parent 5e7d4a75cb
commit 78a7a06840
3 changed files with 9 additions and 4 deletions

View file

@ -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.

View 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

View 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