public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Fix nano-malloc build
@ 2022-05-04 16:50 Jeff Johnston
  0 siblings, 0 replies; only message in thread
From: Jeff Johnston @ 2022-05-04 16:50 UTC (permalink / raw)
  To: newlib-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=90a4ab5eb16a7b3c5451f07d6a4972cb4cbd3dd3

commit 90a4ab5eb16a7b3c5451f07d6a4972cb4cbd3dd3
Author: Dimitar Dimitrov <dimitar@dinux.eu>
Date:   Wed May 4 19:31:43 2022 +0300

    Fix nano-malloc build
    
    The nano malloc build broke with:
      Commit 357d7fcc6
      In <stdio.h> provide only necessary types
    
    The above commit exposed a latent missing-header bug:
      newlib/libc/stdlib/nano-mallocr.c:220:33: error: ‘uintptr_t’ undeclared (first use in this function)
    
    Fix by including <stdint.h>.
    
    Signed-off-by: Dimitar Dimitrov <dimitar@dinux.eu>

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-mallocr.c
index 7ba1c0abc..99ad60dd0 100644
--- a/newlib/libc/stdlib/nano-mallocr.c
+++ b/newlib/libc/stdlib/nano-mallocr.c
@@ -36,6 +36,7 @@
 #include <string.h>
 #include <errno.h>
 #include <malloc.h>
+#include <stdint.h>
 
 #if DEBUG
 #include <assert.h>


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-05-04 16:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-04 16:50 [newlib-cygwin] Fix nano-malloc build Jeff Johnston

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).