diff options
author | Steve Chamberlain <steve@cygnus> | 1991-04-17 02:02:53 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-04-17 02:02:53 +0000 |
commit | 5e83d38ef98defb5521d9c998c96a18f4595e218 (patch) | |
tree | 8c9463cfc94c7b507818e7d906f12fdd68a3346a /ld/ld.h | |
parent | 9bba77849185628b38d21f095f389e0397cab616 (diff) | |
download | gdb-5e83d38ef98defb5521d9c998c96a18f4595e218.zip gdb-5e83d38ef98defb5521d9c998c96a18f4595e218.tar.gz gdb-5e83d38ef98defb5521d9c998c96a18f4595e218.tar.bz2 |
Removed extern declarations
Diffstat (limited to 'ld/ld.h')
-rw-r--r-- | ld/ld.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -46,7 +46,7 @@ typedef struct user_section_struct { /* Which symbols should be stripped (omitted from the output): none, all, or debugger symbols. */ -enum { STRIP_NONE, STRIP_ALL, STRIP_DEBUGGER } strip_symbols; +typedef enum { STRIP_NONE, STRIP_ALL, STRIP_DEBUGGER } strip_symbols_type; @@ -54,7 +54,7 @@ enum { STRIP_NONE, STRIP_ALL, STRIP_DEBUGGER } strip_symbols; /* Which local symbols should be omitted: none, all, or those starting with L. This is irrelevant if STRIP_NONE. */ -enum { DISCARD_NONE, DISCARD_ALL, DISCARD_L } discard_locals; +typedef enum { DISCARD_NONE, DISCARD_ALL, DISCARD_L } discard_locals_type; |