amiga_boottest

view src/rng.h @ 3:555b986cc420

IFS
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 22 Feb 2018 14:46:32 +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_ */