OSDN Git Service

hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing...
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / wait.c
1 /*
2  * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
3  *
4  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
5  */
6
7 #include <stdlib.h>
8 #include <syscall.h>
9 #include <sys/types.h>
10 #include <sys/wait.h>
11 #include <sys/resource.h>
12
13 libc_hidden_proto(wait4)
14
15 /* Wait for a child to die.  When one does, put its status in *STAT_LOC
16  * and return its process ID.  For errors, return (pid_t) -1.  */
17 __pid_t __libc_wait (__WAIT_STATUS_DEFN stat_loc)
18 {
19       return wait4 (WAIT_ANY, stat_loc, 0, (struct rusage *) NULL);
20 }
21 strong_alias(__libc_wait,wait)