//C语言默认的函数调用约定为 cdecl int vc_add(int x, int y) { return x + y; } int vc_sub(int x, int y) { return x - y; }