Files

23 lines
293 B
C
Raw Permalink Normal View History

2000-03-17 22:48:54 +00: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-03 21:43:30 -06:00
_execve (char *name,
2017-12-03 19:31:41 -06:00
char **argv,
2000-03-17 22:48:54 +00:00
char **env)
{
errno = ENOSYS;
return -1;
}
stub_warning(_execve)