Fix main signature in benchmark.c.

If `NO_CRYPT_BENCHMARK` is defined, the main function is `int main()`, but it
should be `int main(void)`.
This commit is contained in:
Hayden Roche
2022-05-17 14:28:43 -07:00
parent c9ae021427
commit fd535242a0

View File

@ -7827,6 +7827,6 @@ int main(int argc, char** argv)
#else
#ifndef NO_MAIN_DRIVER
int main() { return 0; }
int main(void) { return 0; }
#endif
#endif /* !NO_CRYPT_BENCHMARK */