14 lines
121 B
C++
14 lines
121 B
C++
#include <stdio.h>
|
|
#include "test_static.h"
|
|
|
|
void func2()
|
|
{
|
|
puts( "func2" );
|
|
}
|
|
|
|
void func2_1()
|
|
{
|
|
puts( "func2_1" );
|
|
}
|
|
|