diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-04-30 08:20:47 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-04-30 08:20:47 +0000 |
commit | 01da98f9f4aa3a2a19e462ef2fa29b3e30ecbf56 (patch) | |
tree | e9c416b6413afae55a58701c99ca796980662bf7 /gdb/common | |
parent | 366c6766d83358d8bdf050fba3cf60912cc1a243 (diff) | |
download | gdb-01da98f9f4aa3a2a19e462ef2fa29b3e30ecbf56.zip gdb-01da98f9f4aa3a2a19e462ef2fa29b3e30ecbf56.tar.gz gdb-01da98f9f4aa3a2a19e462ef2fa29b3e30ecbf56.tar.bz2 |
filestuff.c: Include "gdb_dirent.h" instead of <dirent.h>
gdb/ChangeLog:
* common/filestuff.c: Replace #include <dirent.h> by
#include "gdb_dirent.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 0271ea8..68f66ca 100644 --- a/gdb/common/filestuff.c +++ b/gdb/common/filestuff.c @@ -56,7 +56,7 @@ #ifndef HAVE_FDWALK -#include <dirent.h> +#include "gdb_dirent.h" /* Replacement for fdwalk, if the system doesn't define it. Walks all open file descriptors (though this implementation may walk closed |