summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/rdos/execve.c
blob: ac7eeb25c6b4eab8bcc81ef853866ef5971c1021 (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;
}