dtfile: remove register keyword

This commit is contained in:
Jon Trulson
2018-06-27 16:32:54 -06:00
parent 55a80f00cf
commit ea2d3927c7
17 changed files with 97 additions and 97 deletions

View File

@@ -179,10 +179,10 @@ static void RenameCollisions(
char *
_DtPName(
register char *name )
char *name )
{
register char * q;
char * q;
static char pnam[MAXPATHLEN];
static char dot[] = ".";
@@ -293,16 +293,16 @@ _DtFollowLink (
Boolean
_DtStringsAreEquivalent(
register char *in_str,
register char *test_str )
char *in_str,
char *test_str )
{
#ifdef NLS16
wchar_t c1;
wchar_t c2;
int c1size, c2size;
#endif
register int i;
register int j;
int i;
int j;
#ifdef NLS16
if (is_multibyte)
@@ -1391,7 +1391,7 @@ RetrieveAndUseNameTemplateInfo(
static void
RenameCollisions( char ** list, int count )
{
register int i, j, k, l;
int i, j, k, l;
char flg = 0, flg2 = 0;
for( i = 0; i < count; ++i )