summaryrefslogtreecommitdiff
path: root/src/termlib.c
diff options
context:
space:
mode:
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;