Closed GoogleCodeExporter closed 9 years ago
I have made this mod and it will appear in the next beta.
Original comment by Bill.Gre...@gmail.com
on 18 Feb 2013 at 2:07
I found that __malloc_heap_start may not be defined in all variations of
Arduino like systems.
I am adding an include for stdlib.h, the official place where
__malloc_heap_start is defined, to SdFatUtil.cpp.
This should insure __malloc_heap_start is defined exactly once.
Original comment by Bill.Gre...@gmail.com
on 19 Feb 2013 at 2:53
FYI, as expected.
...
#include <SdFatUtil.h>
+#include <stdlib.h>
#ifdef __arm__
...
the above had no issue with windows IDE 1.5.2 and avr-gcc 4.7.0
Original comment by mpfl...@gmail.com
on 19 Feb 2013 at 3:22
Original issue reported on code.google.com by
mpfl...@gmail.com
on 18 Feb 2013 at 3:26