aboutsummaryrefslogtreecommitdiff
path: root/include/coff-a29k.h
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-09-12 21:27:49 +0000
committerJohn Gilmore <gnu@cygnus>1991-09-12 21:27:49 +0000
commit054862cfa129057778d433aeb8e0598c82456513 (patch)
tree81afc532bcbc975b1c1ee3c58f512c7340b9ed92 /include/coff-a29k.h
parent96e0dd96330080cafd7f0cce035076e4c4d92afe (diff)
downloadgdb-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/coff-a29k.h')
-rwxr-xr-xinclude/coff-a29k.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/coff-a29k.h b/include/coff-a29k.h
index 35e4ddd..46c131d 100755
--- a/include/coff-a29k.h
+++ b/include/coff-a29k.h
@@ -203,12 +203,12 @@ struct external_lineno
** Symbol entry declaration and related definitions
*/
-#define SYMNMLEN 8 /* Number of characters in a symbol name */
+#define E_SYMNMLEN 8 /* Number of characters in a symbol name */
struct external_syment
{
union {
- char e_name[SYMNMLEN];
+ char e_name[E_SYMNMLEN];
struct {
char e_zeroes[4];
char e_offset[4];
@@ -253,8 +253,8 @@ struct external_syment
** definitions.
*/
-#define FILNMLEN 14 /* # characters in a file name */
-#define DIMNUM 4 /* # array dimensions in auxiliary entry */
+#define E_FILNMLEN 14 /* # characters in a file name */
+#define E_DIMNUM 4 /* # array dimensions in auxiliary entry */
union external_auxent {
struct {
@@ -272,14 +272,14 @@ union external_auxent {
char x_endndx[4]; /* entry ndx past block end */
} x_fcn;
struct { /* if ISARY, up to 4 dimen. */
- char x_dimen[DIMNUM][2];
+ char x_dimen[E_DIMNUM][2];
} x_ary;
} x_fcnary;
char x_tvndx[2]; /* tv index */
} x_sym;
union {
- char x_fname[FILNMLEN];
+ char x_fname[E_FILNMLEN];
struct {
char x_zeroes[4];
char x_offset[4];