From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from 1wt.eu (ded1.1wt.eu [163.172.96.212]) by smtp.subspace.kernel.org (Postfix) with ESMTP id C41471E285A; Tue, 4 Mar 2025 08:01:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=163.172.96.212 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741075298; cv=none; b=QG1sK1/dPRTLEhIRAg1sRymo/cKsPtKANbLkOe2t8xLNVZYXhxaAgVkeHec0EAOn/L+QuVzSzQYhidNoFfKD46n6ydSvIaWe2RsfpRM/kb2UfTAK1uzNhDGwCfRm+9hZY12IHrxTVX78ugPeL0AggaD33pt5c8OkWEqPV/IxWp8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741075298; c=relaxed/simple; bh=djMQJDCyKH40Nld1GGA0iDRvwhpOpB522rDI9oiSr4c=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=CQFyhzy2elVBNMuTuyM80lPFnZyUTRrtDJQ2wA+zXJjN9evtMHNT7eLQSACrJetXXvNRtwWmPf9yFA/jhugL2bAajn5mV11QIALKEYSQSmuTQOLHwbFPwy2rGauwEyFwsJzwzDC+q3Yc7K2eajwSrL5uFWh/P7+eZw0+CmTYW+Q= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=1wt.eu; spf=pass smtp.mailfrom=1wt.eu; arc=none smtp.client-ip=163.172.96.212 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=1wt.eu Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=1wt.eu Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 52481W5s010217; Tue, 4 Mar 2025 09:01:32 +0100 Date: Tue, 4 Mar 2025 09:01:32 +0100 From: Willy Tarreau To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: Shuah Khan , Shuah Khan , Thomas =?iso-8859-1?Q?Wei=DFschuh?= , linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH 27/32] tools/nolibc: add snprintf() and friends Message-ID: <20250304080132.GD9911@1wt.eu> References: <20250304-nolibc-kselftest-harness-v1-0-adca7cd231e2@linutronix.de> <20250304-nolibc-kselftest-harness-v1-27-adca7cd231e2@linutronix.de> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20250304-nolibc-kselftest-harness-v1-27-adca7cd231e2@linutronix.de> User-Agent: Mutt/1.10.1 (2018-07-13) On Tue, Mar 04, 2025 at 08:10:57AM +0100, Thomas Weißschuh wrote: > +static int _sprintf_cb(intptr_t _state, const char *buf, size_t size) So logically we should have "nolibc" in that name as well. Willy