Re: [PATCH] Fix nano-malloc build
Jeff Johnston <[email protected]>
| Newsgroups | gmane.comp.lib.newlib |
|---|---|
| Message-ID | <CAOox84uB90aDbXogwrDp6DrdT87pZ4r22oLC3SFiUg2P=BmREg@mail.gmail.com> |
Patch applied. Thanks. -- Jeff J. On Wed, May 4, 2022 at 12:32 PM Dimitar Dimitrov <[email protected]> wrote: > 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 <[email protected]> > --- > 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> > -- > 2.35.1 > >