isfname.c: remove register keyword

This commit is contained in:
Jon Trulson 2019-09-11 17:48:06 -06:00
parent b53728d3b3
commit 426a18d9ef
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ _removelast(char *path)
char * char *
_lastelement(char *path) _lastelement(char *path)
{ {
register char *p; char *p;
p = path + strlen(path); p = path + strlen(path);