forked from aniani/vim
Problem: SunOS/Solaris has a problem with ttys.
Solution: Add mch_isatty() with extra handling for SunOS. (Ozaki Kiichi,
closes #3865)
6 lines
116 B
C
6 lines
116 B
C
/* pty.c */
|
|
int setup_slavepty(int fd);
|
|
int mch_openpty(char **ttyn);
|
|
int mch_isatty(int fd);
|
|
/* vim: set ft=c : */
|