diff options
author | Tom Tromey <tom@tromey.com> | 2020-05-03 15:58:27 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-09-13 17:53:58 -0600 |
commit | 59a397f193f5686de648751f12db88062469de9d (patch) | |
tree | a9a2833ea04f7e3d785b7e6d0ac89036a612221b /gdb/dbxread.c | |
parent | c5e91131d790aa68787d886fe8f9c135a095f5b0 (diff) | |
download | gdb-59a397f193f5686de648751f12db88062469de9d.zip gdb-59a397f193f5686de648751f12db88062469de9d.tar.gz gdb-59a397f193f5686de648751f12db88062469de9d.tar.bz2 |
Remove use of __CYGNUSCLIB__
I found a check of __CYGNUSCLIB__ in dbxread.c. I think this is dead
code. This patch removes it.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index cf35880..4d84699 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -31,10 +31,6 @@ for real. dbx_psymtab_to_symtab() is the function that does this */ #include "defs.h" -#if defined(__CYGNUSCLIB__) -#include <sys/types.h> -#include <fcntl.h> -#endif #include "gdb_obstack.h" #include <sys/stat.h> |