faster (Daniel Glöckner)

tcc-xref
bellard 2004-10-04 22:06:22 +00:00
parent 79c72b2419
commit 3bd3c71fd1
1 changed files with 2 additions and 2 deletions

View File

@ -100,11 +100,11 @@ void g(int c)
ind = ind1;
}
void o(int c)
void o(unsigned int c)
{
while (c) {
g(c);
c = c / 256;
c = c >> 8;
}
}