#define _LIBRARY_
#include<unistd.h>
/*
*加载并执行子进程(其他程序)函数
*下面该调用宏函数对应:int execve(const char*file,char**argv, * char** envp).参数file被执行程序文件名,argv命令行参数指针数组
*envp环境变量指针数组,直接调用了系统中断int 0x80,参数是
* _NR_execve.
*/
_syscall3(int,execve,const char*,file,char**,argv,char**,envp)