mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-09 00:00:04 +03:00
10 lines
188 B
C
10 lines
188 B
C
|
#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();
|
||
|
}
|