diff options
Diffstat (limited to 'include/coff-i386.h')
-rwxr-xr-x | include/coff-i386.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/coff-i386.h b/include/coff-i386.h index cc79c56..a3e902e 100755 --- a/include/coff-i386.h +++ b/include/coff-i386.h @@ -161,14 +161,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]; @@ -256,14 +256,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]; |