mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
17 lines
136 B
C
17 lines
136 B
C
|
|
void call_f(int x);
|
|
|
|
void call_f(int x)
|
|
{
|
|
}
|
|
|
|
void call_g()
|
|
{
|
|
void (*f_ptr)(int);
|
|
|
|
call_f(123);
|
|
|
|
f_ptr = &call_f;
|
|
f_ptr(456);
|
|
}
|