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

@@ -2868,7 +2868,7 @@ findpopen(char *cmd, char *mode, int *childpid)
{
static char *pname = "findpopen";
int fd[2];
register int parentside, childside;
int parentside, childside;
if(pipe(fd) < 0)
return(NULL);