mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
101 B
C
11 lines
101 B
C
const char* foo()
|
|
{
|
|
return "foo";
|
|
}
|
|
|
|
#ifdef FOO
|
|
int foo_defined;
|
|
#else
|
|
int foo_not_defined;
|
|
#endif
|