diff options
author | John Gilmore <gnu@cygnus> | 1991-09-12 21:27:49 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-09-12 21:27:49 +0000 |
commit | 054862cfa129057778d433aeb8e0598c82456513 (patch) | |
tree | 81afc532bcbc975b1c1ee3c58f512c7340b9ed92 /include/internalcoff.h | |
parent | 96e0dd96330080cafd7f0cce035076e4c4d92afe (diff) | |
download | gdb-054862cfa129057778d433aeb8e0598c82456513.zip gdb-054862cfa129057778d433aeb8e0598c82456513.tar.gz gdb-054862cfa129057778d433aeb8e0598c82456513.tar.bz2 |
* internalcoff.h (SYMNMLEN, FILNMLEN, DIMNUM): Define these
for internalcoff, separately from the various external coff's.
* amdcoff.h, bcs88kcoff.h, i386coff.h, intel-coff.h, m68kcoff.h,
m88k-bcs.h: Prefix SYMNMLEN, FILNMLEN, and DIMNUM with E_'s for
the external struct definitions.
* ecoff.h: Remove these #define's, kludge no longer needed.
Diffstat (limited to 'include/internalcoff.h')
-rwxr-xr-x | include/internalcoff.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/internalcoff.h b/include/internalcoff.h index a3dfa60..1cfd0d4 100755 --- a/include/internalcoff.h +++ b/include/internalcoff.h @@ -151,6 +151,10 @@ struct internal_lineno { /********************** SYMBOLS **********************/ +#define SYMNMLEN 8 /* # characters in a symbol name */ +#define FILNMLEN 14 /* # characters in a file name */ +#define DIMNUM 4 /* # array dimensions in auxiliary entry */ + struct internal_syment { union { char _n_name[SYMNMLEN]; /* old COFF version */ |