]> git.saurik.com Git - redis.git/blobdiff - src/rand.h
libc neutral random function derived from a drand48() implementation added. Will...
[redis.git] / src / rand.h
diff --git a/src/rand.h b/src/rand.h
new file mode 100644 (file)
index 0000000..8825196
--- /dev/null
@@ -0,0 +1,7 @@
+#ifndef REDIS_RANDOM_H
+#define REDIS_RANDOM_H
+
+int32_t redisLrand48();
+void redisSrand48(int32_t seedval);
+
+#endif