#include <stdio.h> //被替换函数 void test(void) { int a=10; char s[10]={0}; printf("a=%d,s=%s ",a,s); } int main(int argc ,char **argv) { test(); printf("hello world! "); return 0; } //替换函数 int func(int a){ int fd=open("/dev/kd_camera_hw",O_RWD); if(fd < 0){ printf("camera open fail "); return -1; }else{ printf("camera open success! "); return 0; } }