Include <strings.h> and <string.h> instead of
"strings.h" and "string.h".
This commit is contained in:
parent
5e7d4a75cb
commit
78a7a06840
3 changed files with 9 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue