Files
Upsilon/ion/src/shared/random.cpp
Romain Goyet 809fd8a17a [ion] Ion::random()
Change-Id: Ib85055ab3b4bf3dfce991f9990659c744be20f39
2017-02-20 16:14:48 +01:00

7 lines
82 B
C++

#include <ion.h>
#include <stdlib.h>
uint32_t Ion::random() {
return rand();
}