No longer use ushort

This commit is contained in:
ceriel
1991-12-18 09:45:26 +00:00
parent 87a148facb
commit fc4bd85342
3 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ show(headp)
extern char *myalloc();
printf("Version %d\n", headp->oh_stamp);
showflags(headp->oh_flags);
showflags((unsigned) headp->oh_flags);
/*
* Show all sections.
*/
@@ -98,7 +98,7 @@ show(headp)
* Show flags from header.
*/
showflags(flagword)
ushort flagword;
unsigned flagword;
{
if (flagword & HF_LINK) printf("unresolved references left\n");
}

View File

@@ -17,7 +17,7 @@ char **argv;
{
struct outhead buf;
struct outsect sbuf;
ushort nrsect;
unsigned short nrsect;
long sum;
int gorp;