From d2b98ab4ecf168514ae622948e3749dea7671946 Mon Sep 17 00:00:00 2001 From: Yegappan Lakshmanan Date: Sat, 18 Sep 2021 12:15:08 +0200 Subject: patch 8.2.3447: a couple of declarations are not ANSI C Problem: A couple of declarations are not ANSI C. Solution: Put argument type inside (). (Yegappan Lakshmanan, closes #8890) --- src/os_unix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/os_unix.h') 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 -- cgit v1.2.1