From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2119) id CF2DA3858CDB; Sat, 30 Dec 2023 04:26:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CF2DA3858CDB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1703910360; bh=jSkkYmL8QOST8whwdzx9TDm4O1MI0zYefS5rctLIMFo=; h=From:To:Subject:Date:From; b=o0hwgEaQGeJnzcbKqHokzphwM3kMHbTLriFVgNIeN1STDYEstAo8vJhJO1TMZJKLV qUaMXdXJrPwsPOcjCciSrbcLHwk4cJy3FEde2dDzFAtAjVHTV2hepDzEMGjJesZm2J 2I4DABDbOz5P1vt8uKpGgsnpjskRbqddYgJQ3vzk= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jeff Law To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] Fix another missing header file for mcore libgloss X-Act-Checkin: newlib-cygwin X-Git-Author: Jeff Law X-Git-Refname: refs/heads/master X-Git-Oldrev: a84860f4882c4d3c743c66a4861b5213799e6405 X-Git-Newrev: 7ef32a98cdf74157ae734a7a833af5171585db0c Message-Id: <20231230042600.CF2DA3858CDB@sourceware.org> Date: Sat, 30 Dec 2023 04:26:00 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D7ef32a98cdf= 74157ae734a7a833af5171585db0c commit 7ef32a98cdf74157ae734a7a833af5171585db0c Author: Jeff Law Date: Fri Dec 29 21:23:26 2023 -0700 Fix another missing header file for mcore libgloss =20 I guess I must have missed this when working through the trivial port s= pecific changes. =20 This adds an include of stdlib.h to get a prototype for exit(). =20 Pushed to the trunk. Diff: --- libgloss/mcore/sbrk.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libgloss/mcore/sbrk.c b/libgloss/mcore/sbrk.c index 1eb8047fc..c6860194c 100644 --- a/libgloss/mcore/sbrk.c +++ b/libgloss/mcore/sbrk.c @@ -14,6 +14,7 @@ */ #include #include +#include #include "glue.h" =20 extern int _write (int, char *, int);