X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Ffmtdump.c;h=5266235a5dd39eb145307fbc72f9b64d16065749;hp=c9b28cf70a448a8c77d100d7afca88d3362d6c76;hb=a87df3543d3bc128ba4079d1f95638476ba5ca50;hpb=cf1205b5cbea2f0cd6ea710ec16c637df85b647c diff --git a/uip/fmtdump.c b/uip/fmtdump.c index c9b28cf..5266235 100644 --- a/uip/fmtdump.c +++ b/uip/fmtdump.c @@ -103,7 +103,7 @@ static void fmt_dump(struct format *fmth) { int i; - register struct format *fmt, *addr; + struct format *fmt, *addr; /* Assign labels */ for (fmt = fmth; fmt; ++fmt) { @@ -131,7 +131,7 @@ fmt_dump(struct format *fmth) static void dumpone(struct format *fmt) { - register int i; + int i; if ((i = findlabel(fmt)) >= 0) printf("L%d:", i); @@ -312,7 +312,7 @@ dumpone(struct format *fmt) static int findlabel(struct format *addr) { - register int i; + int i; for (i = 0; i < lused; ++i) if (addr == lvec[i]) @@ -436,7 +436,7 @@ f_typestr(int t) static char * c_typestr(int t) { - register int i; + int i; static char buf[64]; buf[0] = '\0'; @@ -453,7 +453,7 @@ c_typestr(int t) static char * c_flagsstr(int t) { - register int i; + int i; static char buf[64]; buf[0] = '\0';