diff options
author | John Gilmore <gnu@cygnus> | 1991-10-25 07:43:52 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-25 07:43:52 +0000 |
commit | f883d70466d62aa2fb9a580cc0526998e52d9784 (patch) | |
tree | e33bd7a421c79c0fd8142e351bb26643f51aae56 /include | |
parent | 85d433c30da1d554692c64ee10725ce3bcac5cfd (diff) | |
download | gdb-f883d70466d62aa2fb9a580cc0526998e52d9784.zip gdb-f883d70466d62aa2fb9a580cc0526998e52d9784.tar.gz gdb-f883d70466d62aa2fb9a580cc0526998e52d9784.tar.bz2 |
avoid "ulong".
Diffstat (limited to 'include')
-rwxr-xr-x | include/internalcoff.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/include/internalcoff.h b/include/internalcoff.h index dbbb0ad..b2d47f0 100755 --- a/include/internalcoff.h +++ b/include/internalcoff.h @@ -47,18 +47,18 @@ struct internal_aouthdr { unsigned long tagentries; /* number of tag entries to follow */ /* RS/6000 stuff */ - ulong o_toc; /* address of TOC */ - short o_snentry; /* section number for entry point */ - short o_sntext; /* section number for text */ - short o_sndata; /* section number for data */ - short o_sntoc; /* section number for toc */ - short o_snloader; /* section number for loader section */ - short o_snbss; /* section number for bss */ - short o_algntext; /* max alignment for text */ - short o_algndata; /* max alignment for data */ - short o_modtype; /* Module type field, 1R,RE,RO */ - ulong o_maxstack; /* max stack size allowed. */ -} ; + unsigned long o_toc; /* address of TOC */ + short o_snentry; /* section number for entry point */ + short o_sntext; /* section number for text */ + short o_sndata; /* section number for data */ + short o_sntoc; /* section number for toc */ + short o_snloader; /* section number for loader section */ + short o_snbss; /* section number for bss */ + short o_algntext; /* max alignment for text */ + short o_algndata; /* max alignment for data */ + short o_modtype; /* Module type field, 1R,RE,RO */ + unsigned long o_maxstack; /* max stack size allowed. */ +}; /********************** STORAGE CLASSES **********************/ |