projects
/
ccan
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
rune: add helpers for users doing DIY parsing.
[ccan]
/
ccan
/
check_type
/
test
/
compile_fail-check_type.c
1
#include <ccan/check_type/check_type.h>
2
3
int main(int argc, char *argv[])
4
{
5
(void)argc;
6
(void)argv;
7
#ifdef FAIL
8
check_type(argc, char);
9
#endif
10
return 0;
11
}