mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-02 00:00:03 +03:00
11 lines
156 B
C
11 lines
156 B
C
#include <ccan/build_assert/build_assert.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
#ifdef FAIL
|
|
return BUILD_ASSERT_OR_ZERO(1 == 0);
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|