Initial revision

This commit is contained in:
ceriel 1986-12-16 10:23:21 +00:00
parent 62e81f1292
commit 9f1d5f8c5a
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,5 @@
exit(code)
{
_cleanup() ;
_exit(code) ;
}

View File

@ -0,0 +1,7 @@
#include <sgtty.h>
int gtty(fildes,argp)
int fildes ;
struct sgttyb *argp ;
{
return ioctl(fildes,TIOCGETP,argp) ;
}

View File

@ -0,0 +1,7 @@
#include <sgtty.h>
int stty(fildes,argp)
int fildes ;
struct sgttyb *argp ;
{
return ioctl(fildes,TIOCSETP,argp) ;
}