mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
11 lines
140 B
C
11 lines
140 B
C
void TwoFunction();
|
|
void FiveFunction();
|
|
void FourFunction();
|
|
|
|
void SixBFunction()
|
|
{
|
|
TwoFunction();
|
|
FiveFunction();
|
|
FourFunction();
|
|
}
|