]> git.ozlabs.org Git - ccan/blob - ccan/build_assert/test/compile_fail.c
move daemon-with-notify to daemon_with_notify as dashes aren't allowed in CCAN module...
[ccan] / ccan / build_assert / test / compile_fail.c
1 #include <ccan/build_assert/build_assert.h>
2
3 int main(int argc, char *argv[])
4 {
5 #ifdef FAIL
6         BUILD_ASSERT(1 == 0);
7 #endif
8         return 0;
9 }