1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef _SGTTY_H
- #define _SGTTY_H 1
- #include <features.h>
- #include <sys/ioctl.h>
- struct sgttyb;
- __BEGIN_DECLS
- extern int gtty (int __fd, struct sgttyb *__params) __THROW;
- extern int stty (int __fd, __const struct sgttyb *__params) __THROW;
- __END_DECLS
- #endif
|