From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on starla X-Spam-Level: X-Spam-Status: No, score=-0.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,DKIM_VALID_EF,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RDNS_DYNAMIC,SPF_HELO_PASS,SPF_PASS autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id CE1391F452 for ; Thu, 6 Apr 2023 15:04:39 +0000 (UTC) Authentication-Results: dcvr.yhbt.net; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=FdUhtNoU; dkim-atps=neutral Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id A59E5385770F for ; Thu, 6 Apr 2023 15:04:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A59E5385770F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1680793477; bh=7tPDu9THzUcKKS/3ioKHSZ+s/7M8rR7nY6lSGspGzYM=; h=To:Cc:Subject:References:Date:In-Reply-To:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=FdUhtNoUWb9xyeapfsCZimoDXVNwdu8vNSXeky3PHaWU0mn6r7zjvCVl9JTYD0Gj2 TzsO0vXZ2y03G2kARb14jU1uGaqHNOXOzJzTyMQcgb1N7FE/n0yfmOg36Q4mNdqfNK 9CL/GkpPIFYA2At5CJASMpu714opHzeANT1LLBPU= Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id 2BDA43858D28 for ; Thu, 6 Apr 2023 15:04:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 2BDA43858D28 Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-547-uvE5GUZTNb-YG_iqpKI7IA-1; Thu, 06 Apr 2023 11:04:10 -0400 X-MC-Unique: uvE5GUZTNb-YG_iqpKI7IA-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 14AAD884636; Thu, 6 Apr 2023 15:04:10 +0000 (UTC) Received: from oldenburg.str.redhat.com (unknown [10.39.192.84]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5653C18EC6; Thu, 6 Apr 2023 15:04:09 +0000 (UTC) To: Adhemerval Zanella Netto Cc: libc-alpha@sourceware.org Subject: Re: [PATCH] : Make strchrnul, strcasestr, memmem available by default References: <87h6yo4e3v.fsf@oldenburg.str.redhat.com> Date: Thu, 06 Apr 2023 17:04:07 +0200 In-Reply-To: (Adhemerval Zanella Netto's message of "Thu, 8 Dec 2022 14:07:59 -0300") Message-ID: <87h6ttm4rc.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Florian Weimer via Libc-alpha Reply-To: Florian Weimer Errors-To: libc-alpha-bounces+e=80x24.org@sourceware.org Sender: "Libc-alpha" * Adhemerval Zanella Netto: > On 24/11/22 11:32, Florian Weimer via Libc-alpha wrote: >> FreeBSD makes them available by default, too, so there does not seem >> to be a reason to restrict these functions to _GNU_SOURCE. >> >> Tested on x86_64-linux-gnu. > > LGTM, thanks. > > Reviewed-by: Adhemerval Zanella Thanks, finally pushed this after re-testing. Florian