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