From patchwork Thu Mar 31 13:54:00 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella Netto X-Patchwork-Id: 604148 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org 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 3qbQx12Ymnz9sD3 for ; Fri, 1 Apr 2016 00:54:29 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=do60XcCw; dkim-atps=neutral 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:subject:date:message-id; q=dns; s= default; b=lccTjM8FOQWU+jeiY+XVbHOPx5uA0xCeefPZECbUYkber5703uwlU /RZXAS5u2EzKLlD7lnjJdRvuZ96FSKoiJrcw2mmbH6JYB7hg7FPNm+/TYM7vuhzR ltDLJVJibr9he1kkAyiMvze8u1P1bAk+E2I0deeUS25NeaD657RVf4= 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:subject:date:message-id; s=default; bh=X3akArsuhZhxZjNBox2hhhuiW/o=; b=do60XcCwK4a34pfC8s1Un0fSwU36 rhgqTYARHy5jZ2iHghAUQz787hV/qw3PCF1t6nFF/Vc/0I2cE7JuXDS8crvEnq2L 1/75Jmr75yP8SMwqEUCXoQAJU3dVDMXpD7VVCxvWoGrdZazK9pENgZJBapexj+hW KrvTTdNr3j6BpZg= Received: (qmail 76642 invoked by alias); 31 Mar 2016 13:54:19 -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 76629 invoked by uid 89); 31 Mar 2016 13:54:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:655 X-HELO: mail-yw0-f169.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=GoR9BaBJ6kjUjgjmR9On8DRAnbCDOgul74qJriXgjo8=; b=YYmFKq3iSIeNjs7A+OP9tDxaLLCg/WHWU9OLKNF70DnDEbBk7FFO1tT8hee6mtJ2SI szXGGrdyFOGgguuNSGyIR/qvlmgXdImR+umdIHRdxCNiZoM5F29qGW/+rtmX6tobiYNE GVsXfR62y7sP2QkSS1mGeVpJpfCo4c281EyMiBnkfMrmPstQfuYPGzYg1aD1rqf2ylyf KyxxLenD9ZbJkooFgBpm5vkhPqy+j7zDk1Q9pmz91dVPJ9JA4IQi5CuoKJRrl2cThv1V ru/aj4KU6PLNunZPeDFX/Pu/Aqbry4qIeVlBjzX5JmvpCA4L/mlX0qpJZ0dJzotU5+kZ 7kLw== X-Gm-Message-State: AD7BkJLunlkbXftdo4MQznkygIE8UgZ+OV0r5+eYyHVvK6+988tViWpk0RYbX6dbwu0OTm1M X-Received: by 10.13.192.65 with SMTP id b62mr8093564ywd.113.1459432447019; Thu, 31 Mar 2016 06:54:07 -0700 (PDT) From: Adhemerval Zanella X-Google-Original-From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [COMMITTED] [PATCH] Fix tst-dlsym-error build Date: Thu, 31 Mar 2016 10:54:00 -0300 Message-Id: <1459432440-31813-1-git-send-email-adhemerval.zanella@linaro.com> This patch fixes the new test tst-dlsym-error build on aarch64 (and possible other architectures as well) due missing strchrnul definition. * elf/tst-dlsym-error.c: Include for strchrnul. --- ChangeLog | 4 ++++ elf/tst-dlsym-error.c | 1 + 2 files changed, 5 insertions(+) diff --git a/elf/tst-dlsym-error.c b/elf/tst-dlsym-error.c index 11b0358..fb084c5 100644 --- a/elf/tst-dlsym-error.c +++ b/elf/tst-dlsym-error.c @@ -20,6 +20,7 @@ #include #include #include +#include /* Used to disambiguate symbol names. */ static int counter;