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

@@ -209,7 +209,7 @@ pushvar(_StringIO &in, char *buff)
static boolean
pushenv(_StringIO &in, char const *name)
{
register char *str = getenv(name);
char *str = getenv(name);
if (str == NULL || *str == '\0')
return FALSE;
else