From 49d8fa1058aaf23c29e074b2314492ae40d2f557 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 21 Feb 2017 12:05:07 +0000 Subject: Types change: big pass on libstddjb and libunixonacid libdatastruct still missing, library still not functional --- src/libstddjb/wait_pids_nohang.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libstddjb/wait_pids_nohang.c') diff --git a/src/libstddjb/wait_pids_nohang.c b/src/libstddjb/wait_pids_nohang.c index 3c52e6b..c13ddec 100644 --- a/src/libstddjb/wait_pids_nohang.c +++ b/src/libstddjb/wait_pids_nohang.c @@ -1,6 +1,6 @@ /* ISC license. */ -#include +#include #include int wait_pids_nohang (pid_t const *pids, unsigned int len, int *wstat) @@ -8,10 +8,10 @@ int wait_pids_nohang (pid_t const *pids, unsigned int len, int *wstat) for (;;) { int w ; - register pid_t r = wait_nohang(&w) ; + pid_t r = wait_nohang(&w) ; if (!r || (r == (pid_t)-1)) return (int)r ; { - register unsigned int i = 0 ; + unsigned int i = 0 ; for (; i < len ; i++) if (r == pids[i]) break ; if (i < len) { -- cgit v1.2.3