2024-04-14 22:45:38 +02:00

10 lines
139 B
C

#ifndef PCH_VALUE
# error "PCH_VALUE not defined"
#endif
int main(void)
{
const int value = PCH_VALUE;
return value == 42 ? 0 : 1;
}