]> git.ozlabs.org Git - ccan/blob - ccan/build_assert/test/compile_fail-expr.c
opt: Fix warnings with gcc-4.5 (same approach as commit 6535bde)
[ccan] / ccan / build_assert / test / compile_fail-expr.c
1 #include <ccan/build_assert/build_assert.h>
2
3 int main(int argc, char *argv[])
4 {
5 #ifdef FAIL
6         return EXPR_BUILD_ASSERT(1 == 0);
7 #else
8         return 0;
9 #endif
10 }