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