diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:20:40 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:20:40 +0100 |
commit | d99df423c559d85c17779b3685426c489554908c (patch) | |
tree | 13cc6e922816525fa597cc5b3db1c91d0be24fc2 /src/os_unix.c | |
parent | baaa7e9ec7398a813e21285c272fa99792642077 (diff) | |
download | vim-git-d99df423c559d85c17779b3685426c489554908c.tar.gz |
patch 7.4.1200v7.4.1200
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 93e7dd471..59aeddb36 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -109,7 +109,7 @@ static int mch_gpm_process(void); static int sysmouse_open(void); static void sysmouse_close(void); -static RETSIGTYPE sig_sysmouse __ARGS(SIGPROTOARG); +static RETSIGTYPE sig_sysmouse SIGPROTOARG; #endif /* @@ -190,22 +190,22 @@ static int do_xterm_trace(void); static void handle_resize(void); #if defined(SIGWINCH) -static RETSIGTYPE sig_winch __ARGS(SIGPROTOARG); +static RETSIGTYPE sig_winch SIGPROTOARG; #endif #if defined(SIGINT) -static RETSIGTYPE catch_sigint __ARGS(SIGPROTOARG); +static RETSIGTYPE catch_sigint SIGPROTOARG; #endif #if defined(SIGPWR) -static RETSIGTYPE catch_sigpwr __ARGS(SIGPROTOARG); +static RETSIGTYPE catch_sigpwr SIGPROTOARG; #endif #if defined(SIGALRM) && defined(FEAT_X11) \ && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK) # define SET_SIG_ALARM -static RETSIGTYPE sig_alarm __ARGS(SIGPROTOARG); +static RETSIGTYPE sig_alarm SIGPROTOARG; /* volatile because it is used in signal handler sig_alarm(). */ static volatile int sig_alarm_called; #endif -static RETSIGTYPE deathtrap __ARGS(SIGPROTOARG); +static RETSIGTYPE deathtrap SIGPROTOARG; static void catch_int_signal(void); static void set_signals(void); @@ -1137,7 +1137,7 @@ deathtrap SIGDEFARG(sigarg) * volatile because it is used in signal handler sigcont_handler(). */ static volatile int sigcont_received; -static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG); +static RETSIGTYPE sigcont_handler SIGPROTOARG; /* * signal handler for SIGCONT @@ -6592,10 +6592,10 @@ sig_sysmouse SIGDEFARG(sigarg) #endif /* FEAT_SYSMOUSE */ #if defined(FEAT_LIBCALL) || defined(PROTO) -typedef char_u * (*STRPROCSTR)__ARGS((char_u *)); -typedef char_u * (*INTPROCSTR)__ARGS((int)); -typedef int (*STRPROCINT)__ARGS((char_u *)); -typedef int (*INTPROCINT)__ARGS((int)); +typedef char_u * (*STRPROCSTR)(char_u *); +typedef char_u * (*INTPROCSTR)(int); +typedef int (*STRPROCINT)(char_u *); +typedef int (*INTPROCINT)(int); /* * Call a DLL routine which takes either a string or int param |