11 lines
110 B
C++
11 lines
110 B
C++
|
|
#include <stdio.h>
|
|
#include "test_static.h"
|
|
|
|
void func1()
|
|
{
|
|
puts( "func1 which calls func2" );
|
|
func2();
|
|
}
|
|
|