aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/WProgram.h
blob: d6d5ccce77cc0c945a16c6a01f94addf55d2b079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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