summaryrefslogtreecommitdiff
path: root/klibc/klibc/include/sys/wait.h
blob: cad6989bf76c1c5aab4b668efc6062eb73fdb9e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * sys/wait.h
 */

#ifndef _SYS_WAIT_H
#define _SYS_WAIT_H

#include <klibc/extern.h>
#include <sys/types.h>
#include <sys/resource.h>

#include <linux/wait.h>

__extern pid_t wait(int *);
__extern pid_t waitpid(pid_t, int *, int);
__extern pid_t wait3(int *, int, struct rusage *);
__extern pid_t wait4(pid_t, int *, int, struct rusage *);

#endif /* _SYS_WAIT_H */