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

// WMath prototypes
long random(long);
long random(long, long);
void randomSeed(unsigned int);
long map(long, long, long, long, long);
#endif