mirror of
https://github.com/redis/redis.git
synced 2026-04-21 03:01:35 -04:00
10 lines
152 B
C
10 lines
152 B
C
#ifndef REDIS_RANDOM_H
|
|
#define REDIS_RANDOM_H
|
|
|
|
int32_t redisLrand48();
|
|
void redisSrand48(int32_t seedval);
|
|
|
|
#define REDIS_LRAND48_MAX INT32_MAX
|
|
|
|
#endif
|