mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 05:05:00 +00:00
Merge pull request #856 from libexpat/fix-main
Fix `main()` to `main(void)`
This commit is contained in:
commit
059a4aa71d
3 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
}"
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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]));
|
||||
|
|
Loading…
Add table
Reference in a new issue