Fix verify random bytes filling
[fio.git] / os / os-linux.h
index f86ed322c150429df9d7a8e99f70c3dbd19d4028..1bf7e62a42ca8840fcfeef4ef7bc668476084948 100644 (file)
@@ -199,14 +199,6 @@ static inline long os_random_long(os_random_state_t *rs)
        return val;
 }
 
-static inline double os_random_double(os_random_state_t *rs)
-{
-       double val;
-
-       drand48_r(rs, &val);
-       return val;
-}
-
 static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
 {
        struct raw_config_request rq;