From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 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 dcvr.yhbt.net (Postfix) with ESMTPS id 7A57A1F45E for ; Mon, 17 Feb 2020 11:57:01 +0000 (UTC) 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:references:date:in-reply-to :message-id:mime-version:content-type:content-transfer-encoding; q=dns; s=default; b=wmiUi8OGIIKio9ZxfaTMArcxb6kPBxXeEaBpw4cUO/p wlk/YDA9/q8mxoc3Vm26AsMPrSsQDaMMVSRpjvPHcyh6L+zHy2Gz+gftVE4XwDVm C0cJ3Kb7Q/7QYtAxl0KJvjYAIu7xpx6o7cg+0Qpds3wzOWugQtwxjt+oEznX7XWU = 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:references:date:in-reply-to :message-id:mime-version:content-type:content-transfer-encoding; s=default; bh=k3uspLe5Q7zToroLd1a10awx/LE=; b=NjMwVFrt7pYknWWIA kTPtfS51RDdQIxMB19lrESCh4vDB/s8geW7fdMAEfIORYouOGjUXoEwrZzsbToMR shDFIFNsrunNzgdO8wkC5p/JNM9iTryAtb54B7Xx82V1/dR5TBuNPi2wBVo8CHiO MdE6zrDLEbZQlbXl7Uh2bTsph4= Received: (qmail 79165 invoked by alias); 17 Feb 2020 11:56:59 -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 Received: (qmail 79122 invoked by uid 89); 17 Feb 2020 11:56:56 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: us-smtp-1.mimecast.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581940612; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Z8wypO7pQTib3earZKIyT+8K+ykNM3k83LliJW89y70=; b=egs5UiXZzY2nAXmrAdeIUfeUceHfmSJOJPyOvhyUorz7EmKBD2nwHe2XzBIGfi6Abj1xVx ZzTrb5FgMHie0dgTViBP8hK6P9zFZzskUqyzHRlglSEqXnR7rNOvqWY2pinSVG/N92DBqi 8eUOEW+K/IKWxKd+yPmqn01m+s604rQ= From: Florian Weimer To: Andreas Schwab Cc: libc-alpha@sourceware.org Subject: Re: [PATCH] stdlib: Reduce namespace pollution in References: <877e0lscqu.fsf@oldenburg2.str.redhat.com> Date: Mon, 17 Feb 2020 12:56:46 +0100 In-Reply-To: (Andreas Schwab's message of "Mon, 17 Feb 2020 12:54:32 +0100") Message-ID: <87k14lqvep.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: quoted-printable * Andreas Schwab: > On Feb 17 2020, Florian Weimer wrote: > >> This results in conform test failures if the tests are run > > Did you mean "This fixes"? Yes, the namespace pollution results in test failures, and this patch fixes them. Thanks, Florian