Files
2018-08-02 17:53:23 +01:00

11 lines
101 B
C

const char* foo()
{
return "foo";
}
#ifdef FOO
int foo_defined;
#else
int foo_not_defined;
#endif