diff options
author | peter <peter@FreeBSD.org> | 1997-05-01 13:36:35 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-05-01 13:36:35 +0000 |
commit | b50d8a1bfa0f1ebfaf4c8c7071bd172c752c8e35 (patch) | |
tree | 962160ca245ed0c5834453f7990820f23b37e8e2 /gnu/usr.bin/gdb | |
parent | d2e6eb44ef8bfde31888bb875af1b4b32195777e (diff) | |
download | FreeBSD-src-b50d8a1bfa0f1ebfaf4c8c7071bd172c752c8e35.zip FreeBSD-src-b50d8a1bfa0f1ebfaf4c8c7071bd172c752c8e35.tar.gz |
Fix include of <sys/dir.h> to <dirent.h> - it hits a #warning
Diffstat (limited to 'gnu/usr.bin/gdb')
-rw-r--r-- | gnu/usr.bin/gdb/gdbserver/low-fbsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/gdb/gdbserver/low-fbsd.c b/gnu/usr.bin/gdb/gdbserver/low-fbsd.c index 0874e1b..bc85f36 100644 --- a/gnu/usr.bin/gdb/gdbserver/low-fbsd.c +++ b/gnu/usr.bin/gdb/gdbserver/low-fbsd.c @@ -24,7 +24,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <stdio.h> #include <sys/param.h> -#include <sys/dir.h> +#include <dirent.h> #include <sys/user.h> #include <signal.h> #include <sys/ioctl.h> |