mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
12 lines
193 B
C
12 lines
193 B
C
|
|
#ifndef FUNCTIONLIKE_H
|
|
|
|
#define FUNCTIONLIKE_H(x, y) ((x) + (y))
|
|
#define SOMETHINGELSE(x, y) ((x) - (y))
|
|
|
|
// GOOD: this is a functional header guard.
|
|
|
|
int aVariable;
|
|
|
|
#endif // FUNCTIONLIKE_H
|