- Get rid of two warnings

This commit is contained in:
Andi Gutmans 1999-12-25 09:06:55 +00:00
parent 50e49b4a5f
commit d6f788f56a

View File

@ -396,7 +396,7 @@ PHPAPI char *php_strtoupper(char *s, size_t len)
{
char *c;
int ch;
int i;
size_t i;
c = s;
for (i=0; i<len; i++) {
@ -428,7 +428,7 @@ PHPAPI char *php_strtolower(char *s, size_t len)
{
register int ch;
char *c;
int i;
size_t i;
c = s;
for (i=0; i<len; i++) {