Mercurial > emacs
changeset 108907:38cf1b719b59
Include <strings.h> and <string.h> instead of
"strings.h" and "string.h".
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Mon, 07 Jun 2010 19:29:12 -0700 |
parents | 387729300909 |
children | 734073f5d073 |
files | ChangeLog configure.in src/config.in |
diffstat | 3 files changed, 9 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Jun 07 23:01:34 2010 +0000 +++ b/ChangeLog Mon Jun 07 19:29:12 2010 -0700 @@ -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.
--- a/configure.in Mon Jun 07 23:01:34 2010 +0000 +++ b/configure.in Mon Jun 07 19:29:12 2010 -0700 @@ -3610,11 +3610,11 @@ #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
--- a/src/config.in Mon Jun 07 23:01:34 2010 +0000 +++ b/src/config.in Mon Jun 07 19:29:12 2010 -0700 @@ -1141,11 +1141,11 @@ #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