comparison src/pty.c @ 7807:1a5d34492798 v7.4.1200

commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 29 23:20:40 2016 +0100 patch 7.4.1200 Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jan 2016 23:30:06 +0100
parents 0b6c37dd858d
children c079097365f3
comparison
equal deleted inserted replaced
7806:eb2af74e899a 7807:1a5d34492798
226 OpenPTY(ttyn) 226 OpenPTY(ttyn)
227 char **ttyn; 227 char **ttyn;
228 { 228 {
229 int f; 229 int f;
230 char *name; 230 char *name;
231 RETSIGTYPE (*sigcld)__ARGS(SIGPROTOARG); 231 RETSIGTYPE (*sigcld) SIGPROTOARG;
232 232
233 /* 233 /*
234 * SIGCHLD set to SIG_DFL for _getpty() because it may fork() and 234 * SIGCHLD set to SIG_DFL for _getpty() because it may fork() and
235 * exec() /usr/adm/mkpts 235 * exec() /usr/adm/mkpts
236 */ 236 */