Fix main() to main(void)

This commit is contained in:
Sebastian Pipping 2024-04-03 02:20:46 +02:00
parent d450c1b439
commit 13e84bb374
3 changed files with 6 additions and 6 deletions

View file

@ -57,7 +57,7 @@ check_c_source_compiles("
#include <stdlib.h> /* for NULL */
#include <unistd.h> /* for syscall */
#include <sys/syscall.h> /* for SYS_getrandom */
int main() {
int main(void) {
syscall(SYS_getrandom, NULL, 0, 0);
return 0;
}"

View file

@ -215,7 +215,7 @@ AC_LINK_IFELSE([AC_LANG_SOURCE([
#else
# include <stdlib.h> /* for arc4random_buf on BSD */
#endif
int main() {
int main(void) {
char dummy[[123]]; // double brackets for m4
arc4random_buf(dummy, 0U);
return 0;
@ -232,7 +232,7 @@ AC_LINK_IFELSE([AC_LANG_SOURCE([
#else
# include <stdlib.h>
#endif
int main() {
int main(void) {
arc4random();
return 0;
}
@ -254,7 +254,7 @@ AS_IF([test "x$with_getrandom" != xno],
AC_LINK_IFELSE([AC_LANG_SOURCE([
#include <stdlib.h> /* for NULL */
#include <sys/random.h>
int main() {
int main(void) {
return getrandom(NULL, 0U, 0U);
}
])],
@ -278,7 +278,7 @@ AS_IF([test "x$with_sys_getrandom" != xno],
#include <stdlib.h> /* for NULL */
#include <unistd.h> /* for syscall */
#include <sys/syscall.h> /* for SYS_getrandom */
int main() {
int main(void) {
syscall(SYS_getrandom, NULL, 0, 0);
return 0;
}

View file

@ -442,7 +442,7 @@ printTabs(char *tab) {
}
int
main() {
main(void) {
char tab[2 * 65536];
memset(tab, 0, 65536);
setTab(tab, nmstrt, sizeof(nmstrt) / sizeof(nmstrt[0]));