commit | f8ea10677d007befbb6f24cd20f35c3bf71c1296 | [log] [tgz] |
---|---|---|
author | Sam James <sam@gentoo.org> | Sat Nov 05 15:13:50 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Nov 05 15:13:50 2022 +0000 |
tree | d1efff11952a2e2904c64513b87dc4422d807612 | |
parent | 25b8420c2b4c65f8e0292fbc006db1ea12d4b1c6 [diff] [blame] |
patch 9.0.0834: warning for missing return type Problem: Warning for missing return type. Solution: Add "int". (San James, closes #11496)
diff --git a/src/configure.ac b/src/configure.ac index e63c685..16ecd10 100644 --- a/src/configure.ac +++ b/src/configure.ac
@@ -3654,7 +3654,7 @@ AC_MSG_CHECKING(for struct sigcontext) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ #include <signal.h> -test_sig() +int test_sig() { struct sigcontext *scont; scont = (struct sigcontext *)0;