mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
127 B
C
13 lines
127 B
C
void f1(void);
|
|
void f2(void);
|
|
void f4(void);
|
|
void f6(void);
|
|
|
|
static void g(void) {
|
|
f1();
|
|
f2();
|
|
f4();
|
|
f6();
|
|
};
|
|
|