* xstrdup.c: Include <sys/types.h> after "config.h"
authorDavid Edelsohn <edelsohn@gnu.org>
Wed, 8 Oct 2008 16:51:38 +0000 (16:51 +0000)
committerDavid Edelsohn <dje@gcc.gnu.org>
Wed, 8 Oct 2008 16:51:38 +0000 (12:51 -0400)
From-SVN: r140979

libiberty/ChangeLog
libiberty/xstrdup.c

index c79b3b7..955e550 100644 (file)
@@ -1,3 +1,7 @@
+2008-10-08  David Edelsohn  <edelsohn@gnu.org>
+
+       * xstrdup.c: Include <sys/types.h> after "config.h"
 2008-10-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * configure.ac: Call AC_SYS_LARGEFILE.
index 9ac2ea0..fa12c96 100644 (file)
@@ -13,10 +13,10 @@ obtain memory.
 
 */
 
-#include <sys/types.h>
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
+#include <sys/types.h>
 #ifdef HAVE_STRING_H
 #include <string.h>
 #else