]> git.saurik.com Git - redis.git/blob - src/rand.h
DEBUG should not be flagged as w otherwise we can not call DEBUG DIGEST and other...
[redis.git] / src / rand.h
1 #ifndef REDIS_RANDOM_H
2 #define REDIS_RANDOM_H
3
4 int32_t redisLrand48();
5 void redisSrand48(int32_t seedval);
6
7 #define REDIS_LRAND48_MAX INT32_MAX
8
9 #endif