1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef _PTY_H
- #define _PTY_H 1
- #include <features.h>
- #include <termios.h>
- #include <sys/ioctl.h>
- __BEGIN_DECLS
- extern int openpty (int *__amaster, int *__aslave, char *__name,
- struct termios *__termp, struct winsize *__winp) __THROW;
- libutil_hidden_proto(openpty)
- extern int forkpty (int *__amaster, char *__name,
- struct termios *__termp, struct winsize *__winp) __THROW;
- __END_DECLS
- #endif
|