Branch data Line data Source code
1 : : #include <ccan/build_assert/build_assert.h> 2 : : #include <ccan/tap/tap.h> 3 : : 4 : 2 : int main(void) 5 : : { 6 : : plan_tests(1); 7 : : ok1(BUILD_ASSERT_OR_ZERO(1 == 1) == 0); 8 : 2 : return exit_status(); 9 : : }