#include "test.h" void test(void) { func1(); func2(); } void func1(void) { printf("func1()\n"); } void func2(void) { printf("func2()\n"); }