comparison src/pty.c @ 14862:27b9a84395b5 v8.1.0443

patch 8.1.0443: unnecessary static function prototypes commit https://github.com/vim/vim/commit/6dff58f15cede9139b2fcfc64c9064326ea3d3b0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 30 21:43:26 2018 +0200 patch 8.1.0443: unnecessary static function prototypes Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Sep 2018 21:45:07 +0200
parents 8412df1479a3
children d4a6d575e910
comparison
equal deleted inserted replaced
14861:41fbdae837df 14862:27b9a84395b5
123 123
124 /* SVR4 pseudo ttys don't seem to work with SCO-5 */ 124 /* SVR4 pseudo ttys don't seem to work with SCO-5 */
125 #ifdef M_UNIX 125 #ifdef M_UNIX
126 # undef HAVE_SVR4_PTYS 126 # undef HAVE_SVR4_PTYS
127 #endif 127 #endif
128
129 static void initmaster(int);
130 128
131 /* 129 /*
132 * Open all ptys with O_NOCTTY, just to be on the safe side. 130 * Open all ptys with O_NOCTTY, just to be on the safe side.
133 */ 131 */
134 #ifndef O_NOCTTY 132 #ifndef O_NOCTTY