Skip to content

Commit d2b98ab

Browse files
yegappanbrammool
authored andcommitted
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)
1 parent 820d552 commit d2b98ab

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/os_unix.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@
9696
#ifdef SIGHASARG
9797
# ifdef SIGHAS3ARGS
9898
# define SIGPROTOARG (int, int, struct sigcontext *)
99-
# define SIGDEFARG(s) (s, sig2, scont) int s, sig2; struct sigcontext *scont;
99+
# define SIGDEFARG(s) (int s, int sig2, struct sigcontext *scont)
100100
# define SIGDUMMYARG 0, 0, (struct sigcontext *)0
101101
# else
102102
# define SIGPROTOARG (int)
103-
# define SIGDEFARG(s) (s) int s UNUSED;
103+
# define SIGDEFARG(s) (int s UNUSED)
104104
# define SIGDUMMYARG 0
105105
# endif
106106
#else

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,8 @@ static char *(features[]) =
757757

758758
static int included_patches[] =
759759
{ /* Add new patch number below this line */
760+
/**/
761+
3447,
760762
/**/
761763
3446,
762764
/**/

0 commit comments

Comments
 (0)