changed int-functions to void-functions

This commit is contained in:
eck 1990-09-11 10:24:15 +00:00
parent 0d8a8bae5f
commit 1dd88ae8da
2 changed files with 3 additions and 3 deletions

View file

@ -196,7 +196,7 @@ getdents(int fildes, char *buf, unsigned nbyte) /* returns # bytes read;
}
/* else fall through into emulation */
/* case no: /* fall through into emulation */
/* case no:*/ /* fall through into emulation */
}
#endif

View file

@ -45,7 +45,7 @@ setgrent(void)
return _gfd;
}
int
void
endgrent(void)
{
if (_gfd >= 0)
@ -79,7 +79,7 @@ getline(void)
return 1;
}
static int
static void
skip_period(void)
{
while (*_buf && *_buf != ':')