diff options
author | David Edelsohn <edelsohn@gnu.org> | 2008-10-08 16:51:38 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2008-10-08 12:51:38 -0400 |
commit | 0c9e84247ea09de90e753ae059b0b64c17b2964e (patch) | |
tree | 446727d516a9513f06a8453510732d5c8c050863 /libiberty/xstrdup.c | |
parent | 08bf5bb38b4518c6cf1a38676418abe4864b2896 (diff) | |
download | gcc-0c9e84247ea09de90e753ae059b0b64c17b2964e.zip gcc-0c9e84247ea09de90e753ae059b0b64c17b2964e.tar.gz gcc-0c9e84247ea09de90e753ae059b0b64c17b2964e.tar.bz2 |
* xstrdup.c: Include <sys/types.h> after "config.h"
From-SVN: r140979
Diffstat (limited to 'libiberty/xstrdup.c')
-rw-r--r-- | libiberty/xstrdup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/xstrdup.c b/libiberty/xstrdup.c index 9ac2ea0..fa12c96 100644 --- a/libiberty/xstrdup.c +++ b/libiberty/xstrdup.c @@ -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 |