mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
171 B
C
16 lines
171 B
C
|
|
// On define MF1
|
|
#define MF1 foo
|
|
void mf1(void);
|
|
|
|
// On define MI1
|
|
#define MI1 foo
|
|
int mi1;
|
|
|
|
void mf2(void) {
|
|
// On define MF2I
|
|
#define MF2I foo
|
|
int mf2i;
|
|
}
|
|
|