lib/DtHelp: remove register keyword

This commit is contained in:
Jon Trulson
2018-06-27 14:19:02 -06:00
parent 2760adaab3
commit 5b5ac72691
15 changed files with 71 additions and 71 deletions

View File

@@ -487,9 +487,9 @@ _DtHelpCeUpperCase ( char *string )
int _DtHelpCeStrHashToKey(
const char * str)
{
register char c;
register const char * tstr;
register int key = 0;
char c;
const char * tstr;
int key = 0;
if (!str) return 0; /* RETURN */