mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
17 lines
237 B
C
17 lines
237 B
C
// header notices etc
|
|
// GOOD: this does not require a header guard. [FALSE POSITIVE]
|
|
|
|
#ifdef NOTDEFINED
|
|
#error An error.
|
|
#endif
|
|
|
|
#ifndef PREPROC_H
|
|
#define PREPROC_H
|
|
|
|
struct MyPreprocHStruct
|
|
{
|
|
int a, b, c, d, e;
|
|
};
|
|
|
|
#endif // PREPROC_H
|