hurd: Fix libc link
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 3 Sep 2017 02:36:29 +0000 (04:36 +0200)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 3 Sep 2017 02:36:29 +0000 (04:36 +0200)
* sysdeps/posix/pause.c: Include <sigsetops.h>.
* sysdeps/posix/system.c: Include <sigsetops.h>.

ChangeLog
sysdeps/posix/pause.c
sysdeps/posix/system.c

index 11edadd..858848c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,6 +20,8 @@
        * sysdeps/posix/pwritev64v2.c: Include <errno.h>.
        * sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno, __sbrk): New
        functions.
+       * sysdeps/posix/pause.c: Include <sigsetops.h>.
+       * sysdeps/posix/system.c: Include <sigsetops.h>.
 
 2017-09-01  Joseph Myers  <joseph@codesourcery.com>
 
index 53e143d..7c17f49 100644 (file)
@@ -19,6 +19,7 @@
 #include <signal.h>
 #include <unistd.h>
 #include <sysdep-cancel.h>
+#include <sigsetops.h>
 
 /* Suspend the process until a signal arrives.
    This always returns -1 and sets errno to EINTR.  */
index d49cc3f..56195b5 100644 (file)
@@ -24,6 +24,7 @@
 #include <sys/wait.h>
 #include <libc-lock.h>
 #include <sysdep-cancel.h>
+#include <sigsetops.h>
 
 
 #define        SHELL_PATH      "/bin/sh"       /* Path of the shell.  */