]> git.ozlabs.org Git - ccan/blob - ccan/build_assert/test/run-BUILD_ASSERT_OR_ZERO.c
base64: fix for unsigned chars (e.g. ARM).
[ccan] / ccan / build_assert / test / run-BUILD_ASSERT_OR_ZERO.c
1 #include <ccan/build_assert/build_assert.h>
2 #include <ccan/tap/tap.h>
3
4 int main(void)
5 {
6         plan_tests(1);
7         ok1(BUILD_ASSERT_OR_ZERO(1 == 1) == 0);
8         return exit_status();
9 }