diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2021-09-18 12:15:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-09-18 12:15:08 +0200 |
commit | d2b98ab4ecf168514ae622948e3749dea7671946 (patch) | |
tree | 910b3ff4e4e2f72159addc063adfb27ddd537b11 /src | |
parent | 820d5525cae707f39571c6abc2aa6a9e66ed171e (diff) | |
download | vim-git-d2b98ab4ecf168514ae622948e3749dea7671946.tar.gz |
patch 8.2.3447: a couple of declarations are not ANSI Cv8.2.3447
Problem: A couple of declarations are not ANSI C.
Solution: Put argument type inside (). (Yegappan Lakshmanan, closes #8890)
Diffstat (limited to 'src')
-rw-r--r-- | src/os_unix.h | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/os_unix.h b/src/os_unix.h index 83fe66d37..c3a7fec19 100644 --- a/src/os_unix.h +++ b/src/os_unix.h @@ -96,11 +96,11 @@ #ifdef SIGHASARG # ifdef SIGHAS3ARGS # define SIGPROTOARG (int, int, struct sigcontext *) -# define SIGDEFARG(s) (s, sig2, scont) int s, sig2; struct sigcontext *scont; +# define SIGDEFARG(s) (int s, int sig2, struct sigcontext *scont) # define SIGDUMMYARG 0, 0, (struct sigcontext *)0 # else # define SIGPROTOARG (int) -# define SIGDEFARG(s) (s) int s UNUSED; +# define SIGDEFARG(s) (int s UNUSED) # define SIGDUMMYARG 0 # endif #else diff --git a/src/version.c b/src/version.c index 21a697d28..9cd1495ac 100644 --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3447, +/**/ 3446, /**/ 3445, |