From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id BDD453858031 for ; Tue, 18 Jan 2022 04:48:47 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BDD453858031 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 635AA342D87; Tue, 18 Jan 2022 04:48:47 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH 6/8] newlib: add missing _NANO_MALLOC to newlib.hin Date: Mon, 17 Jan 2022 23:47:39 -0500 Message-Id: <20220118044741.21027-7-vapier@gentoo.org> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20220118044741.21027-1-vapier@gentoo.org> References: <20220118044741.21027-1-vapier@gentoo.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jan 2022 04:48:48 -0000 This was added to configure, but never to the header file. Nothing uses this currently, so it's not a big deal (as all the dynamic logic is via automake conditionals), but might as well restore it now to keep autoheader output in sync. --- newlib/newlib.hin | 3 +++ 1 file changed, 3 insertions(+) diff --git a/newlib/newlib.hin b/newlib/newlib.hin index 26cd69f05e11..2b7b8d0d8ea6 100644 --- a/newlib/newlib.hin +++ b/newlib/newlib.hin @@ -159,6 +159,9 @@ /* Define if small footprint nano-formatted-IO implementation used. */ #undef _NANO_FORMATTED_IO +/* nano version of malloc is used. */ +#undef _NANO_MALLOC + /* Verify _REENT_CHECK macros allocate memory successfully. */ #undef _REENT_CHECK_VERIFY -- 2.33.0