DtSvc/DtUtil1: remove register keyword

This commit is contained in:
Jon Trulson
2018-06-27 15:03:37 -06:00
parent dbef83212a
commit f446ca54e9
12 changed files with 135 additions and 135 deletions

View File

@@ -73,9 +73,9 @@ typedef struct builder {
const int *
_DtShmFindIntTabEntry(DtShmInttab inttab, unsigned int key)
{
register const inttab_t * ptr = (const inttab_t *) inttab;
const inttab_t * ptr = (const inttab_t *) inttab;
register int i;
int i;
if ( !ptr->key)
return(0);