From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_LOW,RCVD_IN_MSPIKE_H2, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 31451 invoked from network); 24 May 2023 19:39:29 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 24 May 2023 19:39:29 -0000 Received: (qmail 6041 invoked by uid 550); 24 May 2023 19:39:20 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 5994 invoked from network); 24 May 2023 19:39:19 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inria.fr; s=dc; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=o7P7+bqOKAdKGGNV39K3yhYAT7Oqzwl7e4PUarM1eB4=; b=GG1ewYrDQXSu2BZtZGcbFVJmp2C8MqAJJha58h5PW+BZKazmSYkWM2DK KBE5suAm+TZrIoGMGLGqcYwExD9NL1xY950ss3nIdMpkF+QydUIMd2QXi 8w0g5tXUqPMK6eSXkTuIKqRHoLQ7ZDACpNFEa9bvUrmftKNPs67D7zzjX Y=; Authentication-Results: mail2-relais-roc.national.inria.fr; dkim=none (message not signed) header.i=none; spf=SoftFail smtp.mailfrom=Jens.Gustedt@inria.fr; dmarc=fail (p=none dis=none) d=inria.fr X-IronPort-AV: E=Sophos;i="6.00,190,1681164000"; d="scan'208";a="109526767" From: Jens Gustedt To: musl@lists.openwall.com Date: Wed, 24 May 2023 21:38:50 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [musl] [C23 new stdlib 0/4] changes in stdlib.h In C23, comes with a handful of new functions Jens Gustedt (4): C23: add the new interfaces free_sized and free_aligned_sized for stdlib.h C23: add the memalignment function C23: implement the new strfrom[dfl] functions C23: add the new include guard to stdlib.h include/stdlib.h | 13 +++++++++++-- src/malloc/free.c | 10 ++++++++++ src/stdlib/memalignment.c | 6 ++++++ src/stdlib/strfromd.c | 21 +++++++++++++++++++++ 4 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 src/stdlib/memalignment.c create mode 100644 src/stdlib/strfromd.c -- 2.34.1