aboutsummaryrefslogtreecommitdiff
path: root/include/coff-m88k.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-m88k.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-m88k.h')
-rwxr-xr-xinclude/coff-m88k.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/coff-m88k.h b/include/coff-m88k.h
index 8b11470..7f46b28 100755
--- a/include/coff-m88k.h
+++ b/include/coff-m88k.h
@@ -130,14 +130,14 @@ struct external_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 */
+#define E_SYMNMLEN 8 /* # characters in a symbol name */
+#define E_FILNMLEN 14 /* # characters in a file name */
+#define E_DIMNUM 4 /* # array dimensions in auxiliary entry */
struct external_syment
{
union {
- char e_name[SYMNMLEN];
+ char e_name[E_SYMNMLEN];
struct {
char e_zeroes[4];
char e_offset[4];
@@ -180,7 +180,7 @@ union external_auxent {
/* 12 */
union {
struct { /* if ISARY, up to 4 dimen. */
- char x_dimen[DIMNUM][2];
+ char x_dimen[E_DIMNUM][2];
} x_ary;
} x_fcnary;
/* 20 */
@@ -188,7 +188,7 @@ union external_auxent {
} x_sym;
union {
- char x_fname[FILNMLEN];
+ char x_fname[E_FILNMLEN];
struct {
char x_zeroes[4];
char x_offset[4];