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".
This commit is contained in:
Joel Brobecker 2013-04-30 08:20:04 +00:00
parent b829706801
commit 366c6766d8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-04-29 Joel Brobecker <brobecker@adacore.com>
* common/filestuff.c: Replace #include <sys/stat.h> by
#include "gdb_stat.h".
2013-04-29 Pierre Muller <muller@sourceware.org>
* dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for

View File

@ -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>