rand: cleanup rand_between() and helpers
[fio.git] / t / gen-rand.c
index 4e9d39c6431eb097271b516d795e5ff0ef492dfc..b050bd715a6c067ddc349392f9dc909cddeb9d19 100644 (file)
@@ -1,17 +1,11 @@
+#include <math.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <inttypes.h>
-#include <assert.h>
-#include <math.h>
-#include <string.h>
 
 #include "../lib/types.h"
-#include "../log.h"
-#include "../lib/lfsr.h"
-#include "../lib/axmap.h"
-#include "../smalloc.h"
-#include "../minmax.h"
 #include "../lib/rand.h"
+#include "../log.h"
 
 int main(int argc, char *argv[])
 {
@@ -40,7 +34,7 @@ int main(int argc, char *argv[])
        init_rand(&s, false);
 
        for (i = 0; i < nvalues; i++) {
-               int v = rand32_between(&s, start, end);
+               int v = rand_between(&s, start, end);
 
                buckets[v - start]++;
        }