URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [rdos/] [execve.c] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
#include "config.h" #include <_ansi.h> #include <_syslist.h> #include <errno.h> int execve( char *name, char **argv, char **env) { errno = ENOSYS; return -1; }
Go to most recent revision | Compare with Previous | Blame | View Log