prototype wait3 and wait4
authorRich Felker <dalias@aerifal.cx>
Sat, 19 Feb 2011 07:26:11 +0000 (02:26 -0500)
committerRich Felker <dalias@aerifal.cx>
Sat, 19 Feb 2011 07:26:11 +0000 (02:26 -0500)
include/sys/resource.h
include/sys/wait.h

index 99e383c42dbb5ea597ac5742571aa2f25268d540..a9ec3bcb398b20b0847e45ab6b38e29267464335 100644 (file)
@@ -4,7 +4,6 @@
 #define __NEED_id_t
 #define __NEED_time_t
 #define __NEED_struct_timeval
-#define __NEED_struct_rusage
 
 #include <bits/alltypes.h>
 
index a1851530ff3a4c7b309f0ce7a3e69ad94a16773a..8e3d72d6c71e37898ff2bdcb58b04e96594c1c88 100644 (file)
@@ -16,8 +16,12 @@ typedef int idtype_t;
 pid_t wait (int *);
 int waitid (idtype_t, id_t, siginfo_t *, int);
 pid_t waitpid (pid_t, int *, int );
-//pid_t wait3 (int *, int, struct rusage *);
-//pid_t wait4 (pid_t, int *, int, struct rusage *);
+
+#ifdef _GNU_SOURCE
+#include <sys/resource.h>
+pid_t wait3 (int *, int, struct rusage *);
+pid_t wait4 (pid_t, int *, int, struct rusage *);
+#endif
 
 #include <bits/wait.h>
 #include <bits/wexitstatus.h>