blob: 0ad5b6d5df745ef841e82a382dbd9f2f3174eb41 (
plain)
1
2
3
4
5
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);
|