Files
codeql/cpp/ql/test/query-tests/jsf/4.07 Header Files/AV Rule 35/unmatched.h
2018-08-02 17:53:23 +01:00

9 lines
199 B
C

#ifndef UNMATCHED_A
#define UNMATCHED_A
#endif
int unmatched; // BAD: this file requires a header guard.
#ifndef UNMATCHED_B
#define UNMATCHED_B
#endif /* No trailing newline; this is important. */