mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-09 00:00:04 +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;
|
||
|
}
|