s390x: add single-instruction math functions
[musl.git] / include / pty.h
blobdb63853411879851f0cb04ad562e73a7e7634aad
1 #ifndef _PTY_H
2 #define _PTY_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 #include <termios.h>
9 #include <sys/ioctl.h>
11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
12 int forkpty(int *, char *, const struct termios *, const struct winsize *);
14 #ifdef __cplusplus
16 #endif
18 #endif