amiga_boottest

view src/rng.h @ 4:995d42b33974

serial output
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 23 Feb 2018 13:29:37 +0200
parents
children
line source
1 #ifndef RNG_H_
2 #define RNG_H_
4 #include "inttypes.h"
6 #define RAND_MAX 0x7fffffff
8 void srand(unsigned int s);
9 int32_t rand(void);
11 #endif /* RNG_H_ */