mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
13 lines
165 B
C
13 lines
165 B
C
// header3.h
|
|
|
|
#ifndef INCLUDED_HEADER3
|
|
#define INCLUDED_HEADER3
|
|
|
|
// ...
|
|
|
|
#ifndef INCLUDED_HEADER1 // (not an include guard)
|
|
|
|
#endif
|
|
|
|
#endif // INCLUDED_HEADER3
|