diff options
Diffstat (limited to 'system/include/pty.h')
-rw-r--r-- | system/include/pty.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/include/pty.h b/system/include/pty.h new file mode 100644 index 00000000..0ad5b6d5 --- /dev/null +++ b/system/include/pty.h @@ -0,0 +1,6 @@ + +#include <sys/termios.h> + +int openpty(int *amaster, int *aslave, char *name, struct termios *termp, struct winsize *winp); +int forkpty(int *amaster, char *name, struct termios *termp, struct winsize *winp); + |