// 58954439:45 — MyModule 实现文件(与 my_module.h 配对) // 由 gen_part1.py 成对输出。 #include"my_module.h" #include void func1(){ printf("hello world!"); } int func2(int a, int b){ return a + b; } int main(){ func1(); printf("func2=%d\n", func2(3,4)); return EXIT_SUCCESS; }