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: 809194 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-84135-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="wHoV/rmm"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xlHGJ1J20z9sPs for ; Sun, 3 Sep 2017 12:38:15 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=VkJWAKybpxbpJdXJJEyWz77XFvsVeoQWbwVmfxTyASdnUINWkp9SZ Jzuowso20h2TUltjvVNiEcqFicFvu6SbV9FCmTOKPYIUNwHapVAv16gV/MHr/rTX 42ylT48jNTRWPfRoJtdi81P9KS1kN9iSWP8oeL3M42wL7MIfu9I7jY= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=c1erJmmPWw4VEb9+cUdiZnnkYt8=; b=wHoV/rmmc4BSbK0i/PJ9oSbQwz5F C3cTZaMmGH/+KS7f6UgQdSVvdDHnMoNLNgrfHo3IHU4FN4wYCioGaeHuMmQCyuuE vVG8+jpqpSEX2L2EOF/WNku5AbUftLxAME4ARd2XcWiXXLBuZ1EtuooQBbl2JEw/ KDdV3R5OFB6l1sA= 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. */