mirror of
https://github.com/github/codeql.git
synced 2026-08-03 08:52:55 +02: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
|