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
newlib: Regenerate autotools files
[newlib-cygwin.git]
/
libgloss
/
riscv
/
sys_wait.c
blob
25bf448003b68c84070666c09e213dfd3fae3836
1
#include <machine/syscall.h>
2
#include <errno.h>
3
4
/* Wait for a child process. Minimal implementation for a system without
5
processes just causes an error. */
6
int
_wait
(
int
*
status
)
7
{
8
errno
=
ECHILD
;
9
return
-
1
;
10
}