]> git.ozlabs.org Git - ccan/blob - ccan/check_type/test/compile_fail-check_types_match.c
Mark unused arguments in many modules.
[ccan] / ccan / check_type / test / compile_fail-check_types_match.c
1 #include <ccan/check_type/check_type.h>
2
3 int main(int argc, char *argv[])
4 {
5         unsigned char x = argc;
6         (void)argv;
7 #ifdef FAIL
8         check_types_match(argc, x);
9 #endif
10         return x;
11 }