blob: 23705651684aaeba68e89524116f8c35ae7ea30e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* vi: set sw=4 ts=4: */
/*
* Copyright (C) 2007 Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#if defined __USE_SVID || defined __USE_XOPEN
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
_syscall4(int, waitid, idtype_t, idtype, id_t, id, siginfo_t*, infop, int, options)
#endif
|