lang-bootstrap/05/musl-0.6.0/include/pty.h

18 lines
243 B
C
Raw Permalink Normal View History

2022-02-20 13:18:21 -08: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 *);
#ifdef __cplusplus
extern }
#endif
#endif