Skip to content

Commit f8ea106

Browse files
thesamesambrammool
authored andcommitted
patch 9.0.0834: warning for missing return type
Problem: Warning for missing return type. Solution: Add "int". (San James, closes #11496)
1 parent 25b8420 commit f8ea106

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/auto/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12420,7 +12420,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1242012420
/* end confdefs.h. */
1242112421
1242212422
#include <signal.h>
12423-
test_sig()
12423+
int test_sig()
1242412424
{
1242512425
struct sigcontext *scont;
1242612426
scont = (struct sigcontext *)0;

src/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3654,7 +3654,7 @@ dnl check if struct sigcontext is defined (used for SGI only)
36543654
AC_MSG_CHECKING(for struct sigcontext)
36553655
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
36563656
#include <signal.h>
3657-
test_sig()
3657+
int test_sig()
36583658
{
36593659
struct sigcontext *scont;
36603660
scont = (struct sigcontext *)0;

src/version.c

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

696696
static int included_patches[] =
697697
{ /* Add new patch number below this line */
698+
/**/
699+
834,
698700
/**/
699701
833,
700702
/**/

0 commit comments

Comments
 (0)