avoid "ulong".
This commit is contained in:
parent
85d433c30d
commit
f883d70466
1 changed files with 12 additions and 12 deletions
|
@ -47,18 +47,18 @@ struct internal_aouthdr {
|
||||||
unsigned long tagentries; /* number of tag entries to follow */
|
unsigned long tagentries; /* number of tag entries to follow */
|
||||||
|
|
||||||
/* RS/6000 stuff */
|
/* RS/6000 stuff */
|
||||||
ulong o_toc; /* address of TOC */
|
unsigned long o_toc; /* address of TOC */
|
||||||
short o_snentry; /* section number for entry point */
|
short o_snentry; /* section number for entry point */
|
||||||
short o_sntext; /* section number for text */
|
short o_sntext; /* section number for text */
|
||||||
short o_sndata; /* section number for data */
|
short o_sndata; /* section number for data */
|
||||||
short o_sntoc; /* section number for toc */
|
short o_sntoc; /* section number for toc */
|
||||||
short o_snloader; /* section number for loader section */
|
short o_snloader; /* section number for loader section */
|
||||||
short o_snbss; /* section number for bss */
|
short o_snbss; /* section number for bss */
|
||||||
short o_algntext; /* max alignment for text */
|
short o_algntext; /* max alignment for text */
|
||||||
short o_algndata; /* max alignment for data */
|
short o_algndata; /* max alignment for data */
|
||||||
short o_modtype; /* Module type field, 1R,RE,RO */
|
short o_modtype; /* Module type field, 1R,RE,RO */
|
||||||
ulong o_maxstack; /* max stack size allowed. */
|
unsigned long o_maxstack; /* max stack size allowed. */
|
||||||
} ;
|
};
|
||||||
|
|
||||||
/********************** STORAGE CLASSES **********************/
|
/********************** STORAGE CLASSES **********************/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue