mirror of
https://github.com/fluencelabs/musl
synced 2025-06-12 22:41:37 +00:00
initial check-in, version 0.5.0
This commit is contained in:
17
include/pty.h
Normal file
17
include/pty.h
Normal file
@ -0,0 +1,17 @@
|
||||
#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
|
Reference in New Issue
Block a user