diff options
author | John Gilmore <gnu@cygnus> | 1991-07-21 13:09:10 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-07-21 13:09:10 +0000 |
commit | 50651e5e430ba2e46f3ffae0f259e10a0a506c5d (patch) | |
tree | 6be9d89844ede250a2e52fce9f99749af2935a4b /include/internalcoff.h | |
parent | ef98d5ac064fde1ac8467067fbc639b9d84dfd17 (diff) | |
download | gdb-50651e5e430ba2e46f3ffae0f259e10a0a506c5d.zip gdb-50651e5e430ba2e46f3ffae0f259e10a0a506c5d.tar.gz gdb-50651e5e430ba2e46f3ffae0f259e10a0a506c5d.tar.bz2 |
ieee.h, oasys.h: Add some struct and enum tags for debugging.
internalcoff.h: Comment changes.
ecoff.h: Add back in the relocation entries, deleted accidentally,
and the sizes of ordinary COFF symbol fields for internalcoff.h.
Diffstat (limited to 'include/internalcoff.h')
-rwxr-xr-x | include/internalcoff.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/internalcoff.h b/include/internalcoff.h index cdce490..726e794 100755 --- a/include/internalcoff.h +++ b/include/internalcoff.h @@ -155,7 +155,9 @@ struct internal_lineno { #endif }; + /********************** SYMBOLS **********************/ + struct internal_syment { union { char _n_name[SYMNMLEN]; /* old COFF version */ @@ -176,10 +178,9 @@ struct internal_syment { char n_numaux; /* number of aux. entries */ }; -/* - * Relocatable symbols have number of the section in which they are defined, - * or one of the following: - */ +/* Relocatable symbols have number of the section in which they are defined, + or one of the following: */ + #define N_UNDEF ((short)0) /* undefined symbol */ #define N_ABS ((short)-1) /* value of symbol is absolute */ #define N_DEBUG ((short)-2) /* debugging symbol -- value is meaningless */ |