aboutsummaryrefslogtreecommitdiff
path: root/include/coff-rs6000.h
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-11-22 16:14:23 +0000
committerJohn Gilmore <gnu@cygnus>1991-11-22 16:14:23 +0000
commitf39eae7baa17c6653aa625d201bf303bfc1592e8 (patch)
tree7844e4ca35563c0c901c475107f5d875e133fe90 /include/coff-rs6000.h
parent3cb0d72dbf60e81ab8316aa3835adf64300fb6cd (diff)
downloadgdb-f39eae7baa17c6653aa625d201bf303bfc1592e8.zip
gdb-f39eae7baa17c6653aa625d201bf303bfc1592e8.tar.gz
gdb-f39eae7baa17c6653aa625d201bf303bfc1592e8.tar.bz2
Lint
Diffstat (limited to 'include/coff-rs6000.h')
-rwxr-xr-xinclude/coff-rs6000.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/include/coff-rs6000.h b/include/coff-rs6000.h
index c1dbd10..3d93a5b 100755
--- a/include/coff-rs6000.h
+++ b/include/coff-rs6000.h
@@ -33,27 +33,27 @@ struct external_filehdr {
typedef struct
{
- char magic[2]; /* type of file */
- char vstamp[2]; /* version stamp */
- char tsize[4]; /* text size in bytes, padded to FW bdry*/
- char dsize[4]; /* initialized data " " */
- char bsize[4]; /* uninitialized data " " */
- char entry[4]; /* entry pt. */
- char text_start[4]; /* base of text used for this file */
- char data_start[4]; /* base of data used for this file */
- char o_toc[4];
- char o_snentry[2];
- char o_sntext[2];
- char o_sndata[2];
- char o_sntoc[2];
- char o_snloader[2];
- char o_snbss[2];
- char o_algntext[2];
- char o_algndata[2];
- char o_modtype[2];
- char o_resv1[2];
- char o_maxstack[4];
- char o_resv2[16];
+ unsigned char magic[2]; /* type of file */
+ unsigned char vstamp[2]; /* version stamp */
+ unsigned char tsize[4]; /* text size in bytes, padded to FW bdry */
+ unsigned char dsize[4]; /* initialized data " " */
+ unsigned char bsize[4]; /* uninitialized data " " */
+ unsigned char entry[4]; /* entry pt. */
+ unsigned char text_start[4]; /* base of text used for this file */
+ unsigned char data_start[4]; /* base of data used for this file */
+ unsigned char o_toc[4];
+ unsigned char o_snentry[2];
+ unsigned char o_sntext[2];
+ unsigned char o_sndata[2];
+ unsigned char o_sntoc[2];
+ unsigned char o_snloader[2];
+ unsigned char o_snbss[2];
+ unsigned char o_algntext[2];
+ unsigned char o_algndata[2];
+ unsigned char o_modtype[2];
+ unsigned char o_resv1[2];
+ unsigned char o_maxstack[4];
+ unsigned char o_resv2[16];
}
AOUTHDR;
@@ -185,13 +185,13 @@ union external_auxent {
} x_tv; /* info about .tv section (in auxent of symbol .tv)) */
struct {
- char x_scnlen[4],
- x_parmhash[4],
- x_snhash[2],
- x_smtyp[1],
- x_smclas[1],
- x_stab[4],
- x_snstab[2];
+ unsigned char x_scnlen[4];
+ unsigned char x_parmhash[4];
+ unsigned char x_snhash[2];
+ unsigned char x_smtyp[1];
+ unsigned char x_smclas[1];
+ unsigned char x_stab[4];
+ unsigned char x_snstab[2];
} x_csect;
};