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

12 lines
217 B
C

#include "includefirsttarget.h" // has it's own include guard
#ifndef INCLUDEFIRST_H
#define INCLUDEFIRST_H
// GOOD: this header file has an include guard.
void includeFirstFunction();
#endif // INCLUDEFIRST_H