From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@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 13:54:00 -0000 Message-Id: <1459432440-31813-1-git-send-email-adhemerval.zanella@linaro.com> X-SW-Source: 2016-03/txt/msg00767.txt.bz2 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; -- 1.9.1