changed int-functions to void-functions
This commit is contained in:
parent
0d8a8bae5f
commit
1dd88ae8da
|
@ -196,7 +196,7 @@ getdents(int fildes, char *buf, unsigned nbyte) /* returns # bytes read;
|
||||||
}
|
}
|
||||||
/* else fall through into emulation */
|
/* else fall through into emulation */
|
||||||
|
|
||||||
/* case no: /* fall through into emulation */
|
/* case no:*/ /* fall through into emulation */
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ setgrent(void)
|
||||||
return _gfd;
|
return _gfd;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
void
|
||||||
endgrent(void)
|
endgrent(void)
|
||||||
{
|
{
|
||||||
if (_gfd >= 0)
|
if (_gfd >= 0)
|
||||||
|
@ -79,7 +79,7 @@ getline(void)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static void
|
||||||
skip_period(void)
|
skip_period(void)
|
||||||
{
|
{
|
||||||
while (*_buf && *_buf != ':')
|
while (*_buf && *_buf != ':')
|
||||||
|
|
Loading…
Reference in a new issue