mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-19 05:44:28 +01:00
This gives us a slew of -Wextra fixes (not all of them though!) but we're actually doing it for the monotonic version of timers. This breaks some stuff, so we fix that up next. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
117 B
C
10 lines
117 B
C
#include <ccan/build_assert/build_assert.h>
|
|
|
|
int main(void)
|
|
{
|
|
#ifdef FAIL
|
|
BUILD_ASSERT(1 == 0);
|
|
#endif
|
|
return 0;
|
|
}
|