diff options
author | Martin Mares <mj@ucw.cz> | 2000-06-05 11:46:40 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-06-05 11:46:40 +0000 |
commit | 10304bed435034cf8432b1c6262f7e7f0d84d49c (patch) | |
tree | 471236b143caba0d839237b795f4dfd514b0298c /sysdep/unix/io.c | |
parent | 5cc1e1f805934952f38ceb2ca6947c6d2e704937 (diff) |
Split random number functions off io.c, so that they can be documented
separately.
Diffstat (limited to 'sysdep/unix/io.c')
-rw-r--r-- | sysdep/unix/io.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index 9d80b7dd..ca233113 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 */ |