Added entry points for ANSI C

This commit is contained in:
ceriel
1990-01-22 11:24:37 +00:00
parent 68e198f375
commit c6d87355db
25 changed files with 398 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
int stty(fildes,argp)
int
stty(fildes,argp)
int fildes ;
char *argp;
{
return ioctl(fildes,/*TIOCSETP*/(('t'<<8)|9),argp) ;
return _ioctl(fildes,/*TIOCSETP*/(('t'<<8)|9),argp) ;
}