Retro68/gcc/newlib/libc/sys/rdos/execve.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

11 lines
165 B
C

#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>
int execve( char *name, char **argv, char **env)
{
errno = ENOSYS;
return -1;
}