diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-04-20 20:55:13 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-04-20 20:55:13 -0400 |
commit | 4921ce08673d14e53b3931b8536238d944a2c1ce (patch) | |
tree | c0a960a492beeddf7fc0a6b32d5cbc17bc6681a9 /include/pty.h | |
parent | f1ac8a28d8f3c93ef42c20460992f74822975f11 (diff) | |
download | musl-4921ce08673d14e53b3931b8536238d944a2c1ce.tar.gz musl-4921ce08673d14e53b3931b8536238d944a2c1ce.tar.xz musl-4921ce08673d14e53b3931b8536238d944a2c1ce.zip |
implement (nonstandard) forkpty
Diffstat (limited to 'include/pty.h')
-rw-r--r-- | include/pty.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/pty.h b/include/pty.h index 9444e5ec..46a99f47 100644 --- a/include/pty.h +++ b/include/pty.h @@ -9,6 +9,7 @@ extern "C" { #include <sys/ioctl.h> int openpty(int *, int *, char *, const struct termios *, const struct winsize *); +int forkpty(int *, char *, const struct termios *, const struct winsize *); #ifdef __cplusplus extern } |