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: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
syscalls
/
syswait.c
blob
25b5c4788d1b50841b580058454ba8e2f9f25b68
1
/* connector for wait */
2
3
#include <reent.h>
4
#include <sys/wait.h>
5
6
pid_t
7
wait
(
int
*
status
)
8
{
9
return
_wait_r
(
_REENT
,
status
);
10
}