Correct printf, and minor changes

This commit is contained in:
Godzil
2013-03-12 02:06:30 +01:00
committed by Manoël Trapier
parent 7b8e3edd43
commit 653bd13b40
2 changed files with 3 additions and 3 deletions

View File

@@ -256,8 +256,8 @@ garbage:
}
case STNUM: /* a numeric constant */
{ /* it may only be an integer constant */
register int base = 10, vch;
register arith val = 0;
int base = 10, vch;
arith val = 0;
int ovfl = 0;
arith ubound = ~(1<<(sizeof(arith)*8-1))/(base/2);