summaryrefslogtreecommitdiffstats
path: root/src/proto/termlib.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-19 13:22:12 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-19 13:22:12 +0100
commitef26954a35207c3f17d6ed35d9a40c918d974892 (patch)
tree331d57d214bf4d20bbfa6b8f4d0155a4c5b1e9b6 /src/proto/termlib.pro
parent99dbe291f55022bd5166c9c3c7967b8693cd9d1b (diff)
patch 7.4.1133v7.4.1133
Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS().
Diffstat (limited to 'src/proto/termlib.pro')
-rw-r--r--src/proto/termlib.pro12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/proto/termlib.pro b/src/proto/termlib.pro
index 4369ecfc63..3dd120f183 100644
--- a/src/proto/termlib.pro
+++ b/src/proto/termlib.pro
@@ -1,8 +1,8 @@
/* termlib.c */
-int tgetent __ARGS((char *tbuf, char *term));
-int tgetflag __ARGS((char *id));
-int tgetnum __ARGS((char *id));
-char *tgetstr __ARGS((char *id, char **buf));
-char *tgoto __ARGS((char *cm, int col, int line));
-int tputs __ARGS((char *cp, int affcnt, void (*outc)(unsigned int)));
+int tgetent(char *tbuf, char *term);
+int tgetflag(char *id);
+int tgetnum(char *id);
+char *tgetstr(char *id, char **buf);
+char *tgoto(char *cm, int col, int line);
+int tputs(char *cp, int affcnt, void (*outc)(unsigned int));
/* vim: set ft=c : */