2 * Acess2 POSIX Emulation Layer
8 * BSD Conforming (Non-POSIX)
10 #ifndef _LIBPOSIX__PTY_H_
11 #define _LIBPOSIX__PTY_H_
16 extern int openpty(int *amaster, int *aslave, char *name, const struct termios *termp, const struct winsize *winp);
17 extern pid_t forkpty(int *amaster, char *name, const struct termios *termp, const struct winsize *winp);
19 extern int login_tty(int fd);