1 2 3 4 5 6 7 8 9
#include <ccan/build_assert/build_assert.h> int main(int argc, char *argv[]) { #ifdef FAIL BUILD_ASSERT(1 == 0); #endif return 0; }