From patchwork Sun Sep 3 01:05:56 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 809184 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-84132-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="E6wcv8wM"; 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 3xlFD638Xzz9s7c for ; Sun, 3 Sep 2017 11:06:14 +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=vjuRGeZp2bxDafZmEbY8EzQTHxGhZaMI+3aLp0Pwhyc6EKtH4oUWZ G1SAbrHqP/tu3TLJ2QBKxrAsnFTVBkvUV3h240ymVxQiAlJBJ/WCZnLKyf6NAJdu ihyCl8rtM0JKFTqXcrihRGU/JYbnmN6wxLTyKgBPPItXjHsydPWjL0= 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=0N/4+7nVuhsXk6U8RRA8Xxcr+9c=; b=E6wcv8wMunEoFXsHbCuumfAH755R eZgg9xiSgEegSc8gQ+BzlUwpk7fVktIockELQDRt3oIXPwNWvWs54Vhrz2BAhXqD EVxKHjhvVL8gmroW7hcf0BIsIMCHCdDHbJpTioVgPnDH+G2DfMZOvBvAs/89uOk/ NDnvT4tAyejdufU= Received: (qmail 896 invoked by alias); 3 Sep 2017 01:06:07 -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 885 invoked by uid 89); 3 Sep 2017 01:06:06 -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 p{read,write}{,v64}v2.c build Date: Sun, 3 Sep 2017 03:05:56 +0200 Message-Id: <20170903010556.12626-1-samuel.thibault@ens-lyon.org> * misc/preadv2.c: Include . * misc/preadv64v2.c: Include . * misc/pwritev2.c: Include . * misc/pwritev64v2.c: Include . * sysdeps/posix/preadv2.c: Include . * sysdeps/posix/preadv64v2.c: Include . Fix inclusion. * sysdeps/posix/pwritev2.c: Include . * sysdeps/posix/pwritev64v2.c: Include . --- ChangeLog | 9 +++++++++ misc/preadv2.c | 1 + misc/preadv64v2.c | 1 + misc/pwritev2.c | 1 + misc/pwritev64v2.c | 1 + sysdeps/posix/preadv2.c | 1 + sysdeps/posix/preadv64v2.c | 3 ++- sysdeps/posix/pwritev2.c | 1 + sysdeps/posix/pwritev64v2.c | 1 + 9 files changed, 18 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f8c12c0a46..0567c67675 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,15 @@ * sysdeps/posix/preadv64v2.c: Use off64_t instead of OFF_T. * sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T. * sysdeps/posix/pwritev64v2.c: Use off64_t instead of OFF_T. + * misc/preadv2.c: Include . + * misc/preadv64v2.c: Include . + * misc/pwritev2.c: Include . + * misc/pwritev64v2.c: Include . + * sysdeps/posix/preadv2.c: Include . + * sysdeps/posix/preadv64v2.c: Include . + Fix inclusion. + * sysdeps/posix/pwritev2.c: Include . + * sysdeps/posix/pwritev64v2.c: Include . 2017-09-01 Joseph Myers diff --git a/misc/preadv2.c b/misc/preadv2.c index a62dcaa699..fe379401ee 100644 --- a/misc/preadv2.c +++ b/misc/preadv2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include /* Same as preadv but with an additional flags argument. */ diff --git a/misc/preadv64v2.c b/misc/preadv64v2.c index a802c2f1ab..e0f05a506a 100644 --- a/misc/preadv64v2.c +++ b/misc/preadv64v2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include /* Same as preadv64 but with an addional flag argument. */ diff --git a/misc/pwritev2.c b/misc/pwritev2.c index b9e07272da..ead84471fc 100644 --- a/misc/pwritev2.c +++ b/misc/pwritev2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include /* Same as pwritev but with an additional flags argument. */ diff --git a/misc/pwritev64v2.c b/misc/pwritev64v2.c index 1f874f054c..c72689cc70 100644 --- a/misc/pwritev64v2.c +++ b/misc/pwritev64v2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include /* Same as preadv64 but with an addional flag argument. */ diff --git a/sysdeps/posix/preadv2.c b/sysdeps/posix/preadv2.c index b79b7b1bc3..cd96677ade 100644 --- a/sysdeps/posix/preadv2.c +++ b/sysdeps/posix/preadv2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include #include diff --git a/sysdeps/posix/preadv64v2.c b/sysdeps/posix/preadv64v2.c index 263f9b77c4..649bde4c5a 100644 --- a/sysdeps/posix/preadv64v2.c +++ b/sysdeps/posix/preadv64v2.c @@ -16,7 +16,8 @@ License along with the GNU C Library; if not, see . */ -#include +#include +#include #include ssize_t diff --git a/sysdeps/posix/pwritev2.c b/sysdeps/posix/pwritev2.c index d746059d42..601f6b1b10 100644 --- a/sysdeps/posix/pwritev2.c +++ b/sysdeps/posix/pwritev2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include #include diff --git a/sysdeps/posix/pwritev64v2.c b/sysdeps/posix/pwritev64v2.c index f340c8a46d..9f05f97b40 100644 --- a/sysdeps/posix/pwritev64v2.c +++ b/sysdeps/posix/pwritev64v2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include #include