mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
18 lines
242 B
C
18 lines
242 B
C
|
|
void myFirstFunction();
|
|
|
|
void mySecondFunction()
|
|
{
|
|
}
|
|
|
|
void myThirdFunction()
|
|
{
|
|
myFirstFunction();
|
|
mySecondFunction();
|
|
myThirdFunction();
|
|
myFourthFunction(); // implicit FDE
|
|
myFifthFunction(); // implicit FDE
|
|
}
|
|
|
|
void myFourthFunction();
|