diff options
author | Cristian Maglie <c.maglie@bug.st> | 2014-09-06 12:37:57 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2014-09-06 12:37:57 +0200 |
commit | df778925a852608461d6153aa81c6336bb7966e7 (patch) | |
tree | 978a579fb4857d9e2ecab300f3f4a40add7dae97 /cores/arduino/Printable.h | |
parent | 4801801ef94b207b3f24a732c6151e5f1011860a (diff) |
Printable.h doesn't need new.h but only stdlib.h for size_t.
Probalby new.h may be removed completely.
Diffstat (limited to 'cores/arduino/Printable.h')
-rw-r--r-- | cores/arduino/Printable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/Printable.h b/cores/arduino/Printable.h index d03c9af..2a1b2e9 100644 --- a/cores/arduino/Printable.h +++ b/cores/arduino/Printable.h @@ -20,7 +20,7 @@ #ifndef Printable_h #define Printable_h -#include <new.h> +#include <stdlib.h> class Print; |