libtt: Change to ANSI function definitions

This commit is contained in:
Peter Howkins
2018-06-28 04:06:47 +01:00
parent 6b09b19351
commit 020d592338
62 changed files with 275 additions and 706 deletions

View File

@@ -53,7 +53,7 @@ static char sccsid[] = "@(#)issync.c 1.7 89/07/17 Copyr 1988 Sun Micro";
*/
int
issync()
issync(void)
{
return iscntl(ALLISFD, ISCNTL_FSYNC);
}
@@ -63,14 +63,13 @@ issync()
*/
int
isfsync(isfd)
int isfd;
isfsync(int isfd)
{
return iscntl(isfd, ISCNTL_FSYNC);
}
_issync()
int _issync(void)
{
int i;
@@ -80,8 +79,7 @@ _issync()
return (ISOK);
}
_isfsync(isfd)
int isfd;
int _isfsync(int isfd)
{
register Fab *fab;
Fcb *fcb;