13 lines
177 B
C
13 lines
177 B
C
void OneFunction(void);
|
|
void FourFunction(void);
|
|
|
|
void ThreeFunction(void)
|
|
{
|
|
static int count = 0;
|
|
if (count == 0) {
|
|
++count;
|
|
FourFunction();
|
|
}
|
|
OneFunction();
|
|
}
|