dtappbuilder: remove register keyword

This commit is contained in:
Jon Trulson
2018-06-27 16:08:50 -06:00
parent 3e81f467be
commit f4776c21d7
19 changed files with 73 additions and 73 deletions

View File

@@ -644,8 +644,8 @@ ab_make_valid_c_ident(STRING label)
static char name[MAXPATHLEN];
static int ith = 0;
int lastchar = -1;
register char *oldPtr = label;
register char *newPtr = name;
char *oldPtr = label;
char *newPtr = name;
if (isdigit(*oldPtr))
{