summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-29 23:20:40 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-29 23:20:40 +0100
commitd99df423c559d85c17779b3685426c489554908c (patch)
tree13cc6e922816525fa597cc5b3db1c91d0be24fc2 /src/proto
parentbaaa7e9ec7398a813e21285c272fa99792642077 (diff)
downloadvim-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/proto')
-rw-r--r--src/proto/if_lua.pro18
-rw-r--r--src/proto/pty.pro5
2 files changed, 12 insertions, 11 deletions
diff --git a/src/proto/if_lua.pro b/src/proto/if_lua.pro
index 10395d577..c33678e13 100644
--- a/src/proto/if_lua.pro
+++ b/src/proto/if_lua.pro
@@ -1,11 +1,11 @@
/* if_lua.c */
-int lua_enabled __ARGS((int verbose));
-void lua_end __ARGS((void));
-void ex_lua __ARGS((exarg_T *eap));
-void ex_luado __ARGS((exarg_T *eap));
-void ex_luafile __ARGS((exarg_T *eap));
-void lua_buffer_free __ARGS((buf_T *buf));
-void lua_window_free __ARGS((win_T *win));
-void do_luaeval __ARGS((char_u *str, typval_T *arg, typval_T *rettv));
-int set_ref_in_lua __ARGS((int copyID));
+int lua_enabled(int verbose);
+void lua_end(void);
+void ex_lua(exarg_T *eap);
+void ex_luado(exarg_T *eap);
+void ex_luafile(exarg_T *eap);
+void lua_buffer_free(buf_T *o);
+void lua_window_free(win_T *o);
+void do_luaeval(char_u *str, typval_T *arg, typval_T *rettv);
+int set_ref_in_lua(int copyID);
/* vim: set ft=c : */
diff --git a/src/proto/pty.pro b/src/proto/pty.pro
index f2424a509..35e5c2b7a 100644
--- a/src/proto/pty.pro
+++ b/src/proto/pty.pro
@@ -1,3 +1,4 @@
/* pty.c */
-int OpenPTY __ARGS((char **ttyn));
-int SetupSlavePTY __ARGS((int fd));
+int SetupSlavePTY(int fd);
+int OpenPTY(char **ttyn);
+/* vim: set ft=c : */