aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-04-08 13:17:06 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-04-08 13:17:06 -0700
commit2f258b91cef5e96150828ff58d1df05182389691 (patch)
treeba484226c803d1325cbac126dc0062d3d99cd518 /system
parent99dd381e078c7dc50e252c79c9631291955fb6d8 (diff)
pty.h
Diffstat (limited to 'system')
-rw-r--r--system/include/pty.h6
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);
+