1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-12 17:55:41 +08:00

11 lines
247 B
C
Raw Normal View History

2020-06-14 23:42:40 +08:00
#ifndef VP_PTYTTY_H_
#define VP_PTYTTY_H_
#include <termios.h>
int openpty(int *, int *, char *, struct termios *, struct winsize *);
int forkpty(int *, char *, struct termios *, struct winsize *);
int login_tty(int);
#endif /* VP_PTYTTY_H_ */