2000-03-17 23:48:54 +01:00
|
|
|
/*
|
|
|
|
* Stub version of execve.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <_ansi.h>
|
|
|
|
#include <_syslist.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#undef errno
|
|
|
|
extern int errno;
|
|
|
|
#include "warning.h"
|
|
|
|
|
|
|
|
int
|
2017-12-04 04:43:30 +01:00
|
|
|
_execve (char *name,
|
2017-12-04 02:31:41 +01:00
|
|
|
char **argv,
|
2000-03-17 23:48:54 +01:00
|
|
|
char **env)
|
|
|
|
{
|
|
|
|
errno = ENOSYS;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
stub_warning(_execve)
|