mirror of
https://github.com/WeActStudio/ArduinoCore-AT32F4.git
synced 2026-05-21 09:22:01 +00:00
13 lines
185 B
C
13 lines
185 B
C
|
|
#ifndef __WMATH_H
|
||
|
|
#define __WMATH_H
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
#include "stdlib.h"
|
||
|
|
}
|
||
|
|
|
||
|
|
void randomSeed(unsigned long seed);
|
||
|
|
long random(long howbig);
|
||
|
|
long random(long howsmall, long howbig);
|
||
|
|
|
||
|
|
#endif
|