Fix typo in nscd/selinux.c
[glibc.git] / include / sys / wait.h
blob22395016145dcca19c8f2babca329980db53ea20
1 #ifndef _SYS_WAIT_H
2 #include <posix/sys/wait.h>
4 #ifndef _ISOMAC
5 /* Now define the internal interfaces. */
6 extern __pid_t __waitpid (__pid_t __pid, int *__stat_loc,
7 int __options);
8 libc_hidden_proto (__waitpid)
9 extern int __waitid (idtype_t idtype, id_t id, siginfo_t *infop, int options);
11 extern __pid_t __libc_waitpid (pid_t __pid, int *__stat_loc, int __options);
12 extern __pid_t __libc_wait (int *__stat_loc);
13 extern __pid_t __wait (__WAIT_STATUS __stat_loc);
14 extern __pid_t __wait3 (__WAIT_STATUS __stat_loc,
15 int __options, struct rusage * __usage);
16 extern __pid_t __wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc,
17 int __options, struct rusage *__usage)
18 attribute_hidden;
19 #endif
20 #endif