aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/Printable.h
diff options
context:
space:
mode:
authorCristian Maglie <c.maglie@bug.st>2014-09-06 12:37:57 +0200
committerCristian Maglie <c.maglie@bug.st>2014-09-06 12:37:57 +0200
commitdf778925a852608461d6153aa81c6336bb7966e7 (patch)
tree978a579fb4857d9e2ecab300f3f4a40add7dae97 /cores/arduino/Printable.h
parent4801801ef94b207b3f24a732c6151e5f1011860a (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.h2
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;