0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 7.4.1199

Problem:    Still using __ARGS.
Solution:   Remove __ARGS in several files. (script by Hirohito Higashi)
This commit is contained in:
Bram Moolenaar
2016-01-29 22:47:03 +01:00
parent 92b8b2d307
commit baaa7e9ec7
24 changed files with 779 additions and 777 deletions

View File

@@ -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;