mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
754c677b0b
Imported from git://git.ozlabs.org/~ccan/ccan init-1161-g661d41f Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
185 B
C
10 lines
185 B
C
#include <ccan/build_assert/build_assert.h>
|
|
#include <ccan/tap/tap.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
plan_tests(1);
|
|
ok1(EXPR_BUILD_ASSERT(1 == 1) == 0);
|
|
return exit_status();
|
|
}
|