Initial revision
This commit is contained in:
parent
78aaf2fd9d
commit
7e78bd904d
5
mach/vax4/libbsd4_1a/exit.c
Normal file
5
mach/vax4/libbsd4_1a/exit.c
Normal file
|
@ -0,0 +1,5 @@
|
|||
exit(code)
|
||||
{
|
||||
_cleanup() ;
|
||||
_exit(code) ;
|
||||
}
|
7
mach/vax4/libbsd4_1a/gtty.c
Normal file
7
mach/vax4/libbsd4_1a/gtty.c
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include <sgtty.h>
|
||||
int gtty(fildes,argp)
|
||||
int fildes ;
|
||||
struct sgttyb *argp ;
|
||||
{
|
||||
return ioctl(fildes,TIOCGETP,argp) ;
|
||||
}
|
7
mach/vax4/libbsd4_1a/stty.c
Normal file
7
mach/vax4/libbsd4_1a/stty.c
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include <sgtty.h>
|
||||
int stty(fildes,argp)
|
||||
int fildes ;
|
||||
struct sgttyb *argp ;
|
||||
{
|
||||
return ioctl(fildes,TIOCSETP,argp) ;
|
||||
}
|
Loading…
Reference in a new issue