mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
10 lines
151 B
C
10 lines
151 B
C
|
|
#if !defined(NOTCONDITION_H)
|
|
#define NOTCONDITION_H
|
|
|
|
// GOOD: this file has an include guard.
|
|
|
|
void notConditionFunction();
|
|
|
|
#endif // NOTCONDITION_H
|