diff options
Diffstat (limited to 'sysdeps/generic/wait.c')
-rw-r--r-- | sysdeps/generic/wait.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/generic/wait.c b/sysdeps/generic/wait.c index 6f1db03f2d..026447e7b3 100644 --- a/sysdeps/generic/wait.c +++ b/sysdeps/generic/wait.c @@ -22,8 +22,7 @@ /* Wait for a child to die. When one does, put its status in *STAT_LOC and return its process ID. For errors, return (pid_t) -1. */ __pid_t -__wait (stat_loc) - __WAIT_STATUS_DEFN stat_loc; +__wait (__WAIT_STATUS_DEFN stat_loc) { __set_errno (ENOSYS); return -1; |