File: compile_fail.c

package info (click to toggle)
wiggle 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,036 kB
  • sloc: ansic: 13,649; sh: 1,180; makefile: 194
file content (9 lines) | stat: -rw-r--r-- 135 bytes parent folder | download | duplicates (26)
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;
}