Fix clang -Wstrict-prototypes by making main take void instead of nothing

This commit is contained in:
Sean McBride
2023-10-20 11:52:28 -04:00
committed by Brad King
parent b373a22991
commit 162e017b2d

View File

@@ -1,6 +1,6 @@
#include <stdio.h>
int main()
int main(void)
{
char buf[1024];
size_t nIn = sizeof(buf);