blob: 9444e5ecb2915082397f8785518efbf3e9d07932 [file] [log] [blame]
#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 *);
#ifdef __cplusplus
extern }
#endif
#endif