Initial revision
This commit is contained in:
parent
62e81f1292
commit
9f1d5f8c5a
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…
x
Reference in New Issue
Block a user