diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-01-17 21:25:17 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-01-19 19:59:16 -0500 |
commit | 15c091ad7326129a3a4ddf04c67fffbc62d002ae (patch) | |
tree | 1635b26f6403d1a58a674bed0b9f3d25368dcfa4 /newlib | |
parent | 21fb1b461c29b61faf199ec2362ff9a53d6f01e6 (diff) | |
download | newlib-15c091ad7326129a3a4ddf04c67fffbc62d002ae.zip newlib-15c091ad7326129a3a4ddf04c67fffbc62d002ae.tar.gz newlib-15c091ad7326129a3a4ddf04c67fffbc62d002ae.tar.bz2 |
newlib: add missing _NANO_MALLOC to newlib.hin
This was added to configure, but never to the header file. Nothing
uses this currently, so it's not a big deal (as all the dynamic logic
is via automake conditionals), but might as well restore it now to
keep autoheader output in sync.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/newlib.hin | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/newlib/newlib.hin b/newlib/newlib.hin index 26cd69f..2b7b8d0 100644 --- a/newlib/newlib.hin +++ b/newlib/newlib.hin @@ -159,6 +159,9 @@ /* Define if small footprint nano-formatted-IO implementation used. */ #undef _NANO_FORMATTED_IO +/* nano version of malloc is used. */ +#undef _NANO_MALLOC + /* Verify _REENT_CHECK macros allocate memory successfully. */ #undef _REENT_CHECK_VERIFY |