summaryrefslogtreecommitdiff
path: root/src/libstddjb/waitn_reap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstddjb/waitn_reap.c')
-rw-r--r--src/libstddjb/waitn_reap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstddjb/waitn_reap.c b/src/libstddjb/waitn_reap.c
index 96a0c61..9f26b5d 100644
--- a/src/libstddjb/waitn_reap.c
+++ b/src/libstddjb/waitn_reap.c
@@ -1,6 +1,6 @@
/* ISC license. */
-#include <sys/types.h>
+#include <sys/wait.h>
#include <skalibs/djbunix.h>
int waitn_reap (pid_t *pids, unsigned int len)
@@ -9,11 +9,11 @@ int waitn_reap (pid_t *pids, unsigned int len)
while (len)
{
int w ;
- register int r = wait_pids_nohang(pids, len, &w) ;
+ int r = wait_pids_nohang(pids, len, &w) ;
if (r < 0) return r ;
else if (!r) break ;
pids[r-1] = pids[--len] ;
n++ ;
}
- return (int)n ;
+ return n ;
}