1 2 3 4 5 6 7 8 9 10 11 12
#ifndef USING_TESTLIB2 #error Expected USING_TESTLIB2 #endif #ifdef USING_TESTLIB3 #error Unexpected USING_TESTLIB3 #endif int main(void) { return 0; }