1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

sync with arduino avr src

This commit is contained in:
Markus Sattler
2015-06-19 10:53:35 +02:00
parent d6f62943d4
commit af4f2d5e28
5 changed files with 11 additions and 4 deletions

View File

@ -27,7 +27,7 @@ extern "C" {
#include <stdlib.h>
}
void randomSeed(unsigned int seed) {
void randomSeed(unsigned long seed) {
if(seed != 0) {
srand(seed);
}