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