musl/include/pty.h

19 lines
312 B
C
Raw Normal View History

2011-02-12 08:22:29 +03:00
#ifndef _PTY_H
#define _PTY_H
#ifdef __cplusplus
extern "C" {
#endif
#include <termios.h>
#include <sys/ioctl.h>
int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
2011-04-21 04:55:13 +04:00
int forkpty(int *, char *, const struct termios *, const struct winsize *);
2011-02-12 08:22:29 +03:00
#ifdef __cplusplus
}
2011-02-12 08:22:29 +03:00
#endif
#endif