summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdep/unix/io.c')
-rw-r--r--sysdep/unix/io.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c
index 9d80b7d..ca23311 100644
--- a/sysdep/unix/io.c
+++ b/sysdep/unix/io.c
@@ -29,20 +29,6 @@
#include "lib/sysio.h"
/*
- * Random Numbers
- */
-
-u32
-random_u32(void)
-{
- long int rand_low, rand_high;
-
- rand_low = random();
- rand_high = random();
- return (rand_low & 0xffff) | ((rand_high & 0xffff) << 16);
-}
-
-/*
* Tracked Files
*/