summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/rdos/execve.c
blob: 38465327af3356200a01e9a3708f06bb897876aa (plain)
1
2
3
4
5
6
7
8
9
10
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>

int execve( char *name, char **argv, char **env)
{
  errno = ENOSYS;
  return -1;
}