diff --git a/cores/esp32/Arduino.h b/cores/esp32/Arduino.h index 5375d695..485238c5 100644 --- a/cores/esp32/Arduino.h +++ b/cores/esp32/Arduino.h @@ -134,8 +134,14 @@ typedef unsigned int word; #include "HardwareSerial.h" #include "Esp.h" +// WMath prototypes +long random(long); #endif /* __cplusplus */ +long random(long, long); +void randomSeed(unsigned long); +long map(long, long, long, long, long); + #ifndef _GLIBCXX_VECTOR // arduino is not compatible with std::vector #define min(a,b) ((a)<(b)?(a):(b)) @@ -145,12 +151,6 @@ typedef unsigned int word; #define _min(a,b) ((a)<(b)?(a):(b)) #define _max(a,b) ((a)>(b)?(a):(b)) -// WMath prototypes -long random(long); -long random(long, long); -void randomSeed(unsigned long); -long map(long, long, long, long, long); - #include "pins_arduino.h" #endif /* _ESP32_CORE_ARDUINO_H_ */