Skip to content

Commit

Permalink
configure: Fix -Werror=strict-prototypes
Browse files Browse the repository at this point in the history
  • Loading branch information
orbea committed Apr 25, 2023
1 parent 84331a2 commit cdfa25c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -922,7 +922,7 @@ case "$host" in
AC_RUN_IFELSE([AC_LANG_SOURCE([[
#include <stdlib.h>
#include <mach-o/dyld.h>
main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
main(void) { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
exit(0);
else
exit(1);
Expand Down

0 comments on commit cdfa25c

Please sign in to comment.