mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
8f24a49223
command line flags.
25 lines
497 B
C
25 lines
497 B
C
/*
|
|
* These functions really belong in a separate library, libcompat, if
|
|
* we're trying to be BSD-ish. They are all obsolete functions.
|
|
*
|
|
* $Id: compat.c,v 1.2 1997/09/21 06:04:59 gdr Exp $
|
|
*
|
|
* This file is formatted with tabs every 8 characters.
|
|
*/
|
|
|
|
#ifdef __ORCAC__
|
|
segment "libc_gen__";
|
|
#endif
|
|
|
|
#include <sgtty.h>
|
|
|
|
int
|
|
gtty(int filedes, struct sgttyb *argp) {
|
|
return ioctl(filedes,TIOCGETP,argp);
|
|
}
|
|
|
|
int
|
|
stty (int filedes, struct sgttyb *argp) {
|
|
return ioctl(filedes,TIOCSETP,argp);
|
|
}
|