comparison src/proto/pty.pro @ 15632:d4a6d575e910 v8.1.0824

patch 8.1.0824: SunOS/Solaris has a problem with ttys commit https://github.com/vim/vim/commit/1ecc5e4a995ade68ae216bb56f6ac9bd5c0b7e4b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 26 15:12:55 2019 +0100 patch 8.1.0824: SunOS/Solaris has a problem with ttys Problem: SunOS/Solaris has a problem with ttys. Solution: Add mch_isatty() with extra handling for SunOS. (Ozaki Kiichi, closes #3865)
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Jan 2019 15:15:12 +0100
parents 1a5d34492798
children
comparison
equal deleted inserted replaced
15631:8896e3b99db4 15632:d4a6d575e910
1 /* pty.c */ 1 /* pty.c */
2 int SetupSlavePTY(int fd); 2 int setup_slavepty(int fd);
3 int OpenPTY(char **ttyn); 3 int mch_openpty(char **ttyn);
4 int mch_isatty(int fd);
4 /* vim: set ft=c : */ 5 /* vim: set ft=c : */