summaryrefslogtreecommitdiffstats
path: root/src/proto/pty.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-26 15:12:55 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-26 15:12:55 +0100
commit1ecc5e4a995ade68ae216bb56f6ac9bd5c0b7e4b (patch)
tree1dd5bf0c048edb2700cfefb407d7fda4033049f6 /src/proto/pty.pro
parent203651b9b2e2f478c9a2be25f86ce9712a21a796 (diff)
patch 8.1.0824: SunOS/Solaris has a problem with ttysv8.1.0824
Problem: SunOS/Solaris has a problem with ttys. Solution: Add mch_isatty() with extra handling for SunOS. (Ozaki Kiichi, closes #3865)
Diffstat (limited to 'src/proto/pty.pro')
-rw-r--r--src/proto/pty.pro5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/proto/pty.pro b/src/proto/pty.pro
index 35e5c2b7ac..52e20ef674 100644
--- a/src/proto/pty.pro
+++ b/src/proto/pty.pro
@@ -1,4 +1,5 @@
/* pty.c */
-int SetupSlavePTY(int fd);
-int OpenPTY(char **ttyn);
+int setup_slavepty(int fd);
+int mch_openpty(char **ttyn);
+int mch_isatty(int fd);
/* vim: set ft=c : */