mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
12 lines
217 B
C
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
|