DtSvc/DtCodelibs: remove register keyword

This commit is contained in:
Jon Trulson
2018-06-27 14:52:33 -06:00
parent 57ce407976
commit 11ad65226d
9 changed files with 41 additions and 41 deletions

View File

@@ -41,7 +41,7 @@ char *strupper(char *str)
if (str != NULL)
{
for (register char *s = str; *s != '\0'; s++)
for (char *s = str; *s != '\0'; s++)
if ((len = mblen(s, MB_CUR_MAX)) > 1)
s += len;
else
@@ -57,7 +57,7 @@ char *strlower(char *str)
if (str != NULL)
{
for (register char *s = str; *s != '\0'; s++)
for (char *s = str; *s != '\0'; s++)
if ((len = mblen(s, MB_CUR_MAX)) > 1)
s += len;
else