aboutsummaryrefslogtreecommitdiff
path: root/core/arduino/WProgram.h
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2007-10-06 13:02:43 +0000
committerDavid A. Mellis <d.mellis@arduino.cc>2007-10-06 13:02:43 +0000
commit179fcdbda432ff33a921a70994087b08b2a79caa (patch)
treedb62b71d303b5b13876773552451406b13cc66cf /core/arduino/WProgram.h
Moving things around - creating the hardware directory and sticking all the avr code, etc. in there.
Diffstat (limited to 'core/arduino/WProgram.h')
-rwxr-xr-xcore/arduino/WProgram.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/arduino/WProgram.h b/core/arduino/WProgram.h
new file mode 100755
index 0000000..d6d5ccc
--- /dev/null
+++ b/core/arduino/WProgram.h
@@ -0,0 +1,17 @@
+#include <stdlib.h>
+#include <string.h>
+#include <math.h>
+
+#include <avr/interrupt.h>
+#include <avr/signal.h>
+
+#include "wiring.h"
+
+#ifdef __cplusplus
+#include "HardwareSerial.h"
+
+// random prototypes
+long random(long);
+long random(long, long);
+void randomSeed(unsigned int);
+#endif