diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-04-30 08:20:04 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-04-30 08:20:04 +0000 |
commit | 366c6766d83358d8bdf050fba3cf60912cc1a243 (patch) | |
tree | f028ea0921f66c89f2965949a31ee77e8bde8583 /gdb/common | |
parent | b82970680130d28392656daf79dfa1b94aa553e0 (diff) | |
download | gdb-366c6766d83358d8bdf050fba3cf60912cc1a243.zip gdb-366c6766d83358d8bdf050fba3cf60912cc1a243.tar.gz gdb-366c6766d83358d8bdf050fba3cf60912cc1a243.tar.bz2 |
filestuff.c: Use gdb_stat.h instead of <sys/stat.h>
gdb/ChangeLog:
* common/filestuff.c: Replace #include <sys/stat.h> by
#include "gdb_stat.h".
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/filestuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/common/filestuff.c b/gdb/common/filestuff.c index 2984c43..0271ea8 100644 --- a/gdb/common/filestuff.c +++ b/gdb/common/filestuff.c @@ -29,7 +29,7 @@ #include <fcntl.h> #include <unistd.h> #include <sys/types.h> -#include <sys/stat.h> +#include "gdb_stat.h" #ifdef USE_WIN32API #include <winsock2.h> |