Sign in
qemu
/
skiboot
/
1369bbaf3944323cd3801ad81222ce4fdf92659f
/
.
/
ccan
/
build_assert
/
test
/
compile_fail-expr.c
blob: 109215b8aa7eab11de86a00b2c174ba9a5cfb721 [
file
] [
log
] [
blame
]
#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
}