summaryrefslogtreecommitdiff
path: root/src/termlib.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-29 22:47:03 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-29 22:47:03 +0100
commitbaaa7e9ec7398a813e21285c272fa99792642077 (patch)
treee9636114bf7c80ae3f7ded9ba9edb8b3ea504344 /src/termlib.c
parent92b8b2d307e34117f146319872010b0ccc9d2713 (diff)
downloadvim-git-baaa7e9ec7398a813e21285c272fa99792642077.tar.gz
patch 7.4.1199v7.4.1199
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/termlib.c')
-rw-r--r--src/termlib.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/termlib.c b/src/termlib.c
index ed605e906..97270e40e 100644
--- a/src/termlib.c
+++ b/src/termlib.c
@@ -17,11 +17,11 @@
# include <sgtty.h>
#endif
-static int getent __ARGS((char *, char *, FILE *, int));
-static int nextent __ARGS((char *, FILE *, int));
-static int _match __ARGS((char *, char *));
-static char *_addfmt __ARGS((char *, char *, int));
-static char *_find __ARGS((char *, char *));
+static int getent(char *, char *, FILE *, int);
+static int nextent(char *, FILE *, int);
+static int _match(char *, char *);
+static char *_addfmt(char *, char *, int);
+static char *_find(char *, char *);
/*
* Global variables for termlib
@@ -536,11 +536,11 @@ long _bauds[16]={
tputs(cp, affcnt, outc)
char *cp; /* string to print */
int affcnt; /* Number of lines affected */
- void (*outc) __ARGS((unsigned int));/* routine to output 1 character */
+ void (*outc)(unsigned int);/* routine to output 1 character */
{
long frac, /* 10^(#digits after decimal point) */
counter, /* digits */
- atol __ARGS((const char *));
+ atol(const char *);
if (VIM_ISDIGIT(*cp)) {
counter = 0;