repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: Add new APIs tc[gs]etwinsize()
[newlib-cygwin.git]
/
newlib
/
libc
/
sys
/
rdos
/
execve.c
blob
38465327af3356200a01e9a3708f06bb897876aa
1
#include
"config.h"
2
#include <_ansi.h>
3
#include <_syslist.h>
4
#include <errno.h>
5
6
int
execve
(
char
*
name
,
char
**
argv
,
char
**
env
)
7
{
8
errno
=
ENOSYS
;
9
return
-
1
;
10
}