From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2134) id 727333857379; Wed, 4 May 2022 16:50:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 727333857379 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jeff Johnston To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] Fix nano-malloc build X-Act-Checkin: newlib-cygwin X-Git-Author: Dimitar Dimitrov X-Git-Refname: refs/heads/master X-Git-Oldrev: ad51d0006a0aaf17aa61ec34221add09bfe01f0c X-Git-Newrev: 90a4ab5eb16a7b3c5451f07d6a4972cb4cbd3dd3 Message-Id: <20220504165014.727333857379@sourceware.org> Date: Wed, 4 May 2022 16:50:14 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2022 16:50:14 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D90a4ab5eb16= a7b3c5451f07d6a4972cb4cbd3dd3 commit 90a4ab5eb16a7b3c5451f07d6a4972cb4cbd3dd3 Author: Dimitar Dimitrov Date: Wed May 4 19:31:43 2022 +0300 Fix nano-malloc build =20 The nano malloc build broke with: Commit 357d7fcc6 In provide only necessary types =20 The above commit exposed a latent missing-header bug: newlib/libc/stdlib/nano-mallocr.c:220:33: error: =E2=80=98uintptr_t= =E2=80=99 undeclared (first use in this function) =20 Fix by including . =20 Signed-off-by: Dimitar Dimitrov Diff: --- newlib/libc/stdlib/nano-mallocr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/newlib/libc/stdlib/nano-mallocr.c b/newlib/libc/stdlib/nano-ma= llocr.c index 7ba1c0abc..99ad60dd0 100644 --- a/newlib/libc/stdlib/nano-mallocr.c +++ b/newlib/libc/stdlib/nano-mallocr.c @@ -36,6 +36,7 @@ #include #include #include +#include =20 #if DEBUG #include