Sign in
fuchsia
/
zircon
/
13ee3dc5e4c46bf127977ad28645c47442ec517d
/
.
/
third_party
/
ulib
/
musl
/
src
/
process
/
waitpid.c
blob: fc2def57f1e1601acc61f9d271289ae26fdfac22 [
file
] [
log
] [
blame
]
#include
<sys/wait.h>
#include
<errno.h>
pid_t
waitpid
(
pid_t
pid
,
int
*
status
,
int
options
)
{
// TODO(kulakowski) Actually wait on |pid|.
errno
=
ENOSYS
;
return
-
1
;
}