提交 164c5c7a 编写于 作者: M M Farkas-Dyck 提交者: Rich Felker

expose public execvpe interface

上级 476cd1d9
......@@ -177,6 +177,7 @@ void endusershell(void);
char *getusershell(void);
int acct(const char *);
long syscall(long, ...);
int execvpe(const char *, char *const [], char *const []);
#endif
#ifdef _GNU_SOURCE
......
......@@ -3,6 +3,7 @@
#include <unistd.h>
#include <errno.h>
#include <limits.h>
#include "libc.h"
extern char **__environ;
......@@ -47,3 +48,5 @@ int execvp(const char *file, char *const argv[])
{
return __execvpe(file, argv, __environ);
}
weak_alias(__execvpe, execvpe);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册