blob: 77bf94c8a9c6088443263547380825bc606809c6 [file] [log] [blame]
#include <ccan/build_assert/build_assert.h>
#include <ccan/tap/tap.h>
int __attribute__((const)) main(int argc, char *argv[])
{
(void)argc;
(void)argv;
plan_tests(1);
ok1(BUILD_ASSERT_OR_ZERO(1 == 1) == 0);
return exit_status();
}