emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100542: Include <strings.h> and <str


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100542: Include <strings.h> and <string.h> instead of
Date: Mon, 07 Jun 2010 19:29:12 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100542
committer: Dan Nicolaescu <address@hidden>
branch nick: trunk
timestamp: Mon 2010-06-07 19:29:12 -0700
message:
  Include <strings.h> and <string.h> instead of
  "strings.h" and "string.h".
modified:
  ChangeLog
  configure.in
  src/config.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2010-06-06 08:57:39 +0000
+++ b/ChangeLog 2010-06-08 02:29:12 +0000
@@ -1,3 +1,8 @@
+2010-06-08  Dan Nicolaescu  <address@hidden>
+
+       * configure.in: Include <strings.h> and <string.h> instead of
+       "strings.h" and "string.h".
+
 2010-06-06  Dan Nicolaescu  <address@hidden>
 
        * configure.in: Remove code dealing with BSTRING.

=== modified file 'configure.in'
--- a/configure.in      2010-06-06 08:57:39 +0000
+++ b/configure.in      2010-06-08 02:29:12 +0000
@@ -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

=== modified file 'src/config.in'
--- a/src/config.in     2010-06-06 08:57:39 +0000
+++ b/src/config.in     2010-06-08 02:29:12 +0000
@@ -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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]