mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
12 lines
128 B
C
12 lines
128 B
C
/*
|
|
* GOOD: this does not require a header guard.
|
|
*/
|
|
|
|
#ifdef NOTDEFINED
|
|
#error An error.
|
|
#else
|
|
#if 1
|
|
// ...
|
|
#endif
|
|
#endif
|