OSDN Git Service

- adds several config-options to allow for turning off certain features
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / waitid.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Copyright (C) 2007 Erik Andersen <andersen@uclibc.org>
4  *
5  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
6  */
7
8 #include <sys/syscall.h>
9
10 #if defined __USE_SVID || defined __USE_XOPEN
11 #include <unistd.h>
12 #include <sys/types.h>
13 #include <sys/wait.h>
14
15 _syscall4(int, waitid, idtype_t, idtype, id_t, id, siginfo_t*, infop, int, options);
16 #endif