aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/WProgram.h
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2007-11-21 17:08:07 +0000
committerDavid A. Mellis <d.mellis@arduino.cc>2007-11-21 17:08:07 +0000
commit0292fe91fc2de0e5c5b374a6d0e0c3879fe49387 (patch)
treef6361f290f3a2621e39f442ddda4c89cd4e5b915 /cores/arduino/WProgram.h
parent72d917f70cdf8edbb11c0648b59bb9afeae64065 (diff)
Adding map(), fixing radians() and degrees(), adding cast functions (int(x) instead of (int) x), adding interrupts() and noInterrupts(), etc.
Diffstat (limited to 'cores/arduino/WProgram.h')
-rwxr-xr-xcores/arduino/WProgram.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cores/arduino/WProgram.h b/cores/arduino/WProgram.h
index d6d5ccc..206cdac 100755
--- a/cores/arduino/WProgram.h
+++ b/cores/arduino/WProgram.h
@@ -10,8 +10,9 @@
#ifdef __cplusplus
#include "HardwareSerial.h"
-// random prototypes
+// WMath prototypes
long random(long);
long random(long, long);
void randomSeed(unsigned int);
+long map(long, long, long, long, long);
#endif