summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/pty.h
blob: 8754dedc9450675e1ca62812db87bae2952543c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __PTY_H__
#define __PTY_H__

#include <_ansi.h>
#include <sys/termios.h>

#ifdef __cplusplus
extern "C" {
#endif

int openpty (int *, int *, char *, const struct termios *,
		     const struct winsize *);
int forkpty (int *, char *, const struct termios *,
		     const struct winsize *);

#ifdef __cplusplus
}
#endif

#endif /* __PTY_H__ */