]> git.ozlabs.org Git - ccan/blobdiff - ccan/container_of/test/compile_fail-types.c
Remove unused main() args in many modules.
[ccan] / ccan / container_of / test / compile_fail-types.c
index cae1c7abd20a1ed36ae6072faa8b50d9aea2644e..fbb97a9ee4f9db1df8f39b063086e18df3eb3994 100644 (file)
@@ -6,7 +6,7 @@ struct foo {
        char b;
 };
 
-int main(int argc, char *argv[])
+int main(void)
 {
        struct foo foo = { .a = 1, .b = 2 }, *foop;
        int *intp = &foo.a;