bcachefs-tools/ccan/build_assert/test/run-BUILD_ASSERT_OR_ZERO.c

10 lines
188 B
C
Raw Normal View History

2016-03-12 09:18:42 +03:00
#include <ccan/build_assert/build_assert.h>
#include <ccan/tap/tap.h>
int main(int argc, char *argv[])
{
plan_tests(1);
ok1(BUILD_ASSERT_OR_ZERO(1 == 1) == 0);
return exit_status();
}