From patchwork Sun Sep 3 02:38:00 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 22587 Received: (qmail 31010 invoked by alias); 3 Sep 2017 02:38:10 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 30461 invoked by uid 89); 3 Sep 2017 02:38:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_NEUTRAL, URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault Subject: [hurd,commited] hurd: Fix libc link Date: Sun, 3 Sep 2017 04:38:00 +0200 Message-Id: <20170903023800.25685-1-samuel.thibault@ens-lyon.org> * sysdeps/posix/pause.c: Include . * sysdeps/posix/system.c: Include . --- ChangeLog | 2 ++ sysdeps/posix/pause.c | 1 + sysdeps/posix/system.c | 1 + 3 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 11edadd5fc..858848c9ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -20,6 +20,8 @@ * sysdeps/posix/pwritev64v2.c: Include . * sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno, __sbrk): New functions. + * sysdeps/posix/pause.c: Include . + * sysdeps/posix/system.c: Include . 2017-09-01 Joseph Myers diff --git a/sysdeps/posix/pause.c b/sysdeps/posix/pause.c index 53e143d98f..7c17f49ffb 100644 --- a/sysdeps/posix/pause.c +++ b/sysdeps/posix/pause.c @@ -19,6 +19,7 @@ #include #include #include +#include /* Suspend the process until a signal arrives. This always returns -1 and sets errno to EINTR. */ diff --git a/sysdeps/posix/system.c b/sysdeps/posix/system.c index d49cc3f01c..56195b529f 100644 --- a/sysdeps/posix/system.c +++ b/sysdeps/posix/system.c @@ -24,6 +24,7 @@ #include #include #include +#include #define SHELL_PATH "/bin/sh" /* Path of the shell. */