mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
19 lines
154 B
C
19 lines
154 B
C
|
|
#define foo "/*bar"
|
|
#define bar aaa \ bbb
|
|
|
|
int i;
|
|
|
|
void f(void) {
|
|
i = 1;
|
|
i = 2;
|
|
i = 3;
|
|
}
|
|
|
|
void g(void) {
|
|
i = 1;
|
|
i = 2;
|
|
i = 3;
|
|
}
|
|
|