Added conditional macro to include some headers only when needed
This commit is contained in:
parent
5813c6501d
commit
ae90e07d59
@ -4,7 +4,12 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <Arduino.h>
|
||||
|
||||
#ifdef ARDUINO
|
||||
#include <Arduino.h>
|
||||
#else
|
||||
typedef bool boolean;
|
||||
#endif //ARDUINO
|
||||
|
||||
template <typename T>
|
||||
class Dictionary;
|
||||
|
Loading…
Reference in New Issue
Block a user