summaryrefslogtreecommitdiff
path: root/klibc/klibc/srand48.c
diff options
context:
space:
mode:
Diffstat (limited to 'klibc/klibc/srand48.c')
-rw-r--r--klibc/klibc/srand48.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/klibc/klibc/srand48.c b/klibc/klibc/srand48.c
deleted file mode 100644
index 5f201d2047..0000000000
--- a/klibc/klibc/srand48.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * srand48.c
- */
-
-#include <stdlib.h>
-#include <stdint.h>
-
-unsigned short __rand48_seed[3]; /* Common with mrand48.c, lrand48.c */
-
-void srand48(long seedval)
-{
- __rand48_seed[0] = 0x330e;
- __rand48_seed[1] = (unsigned short)seedval;
- __rand48_seed[2] = (unsigned short)((uint32_t)seedval >> 16);
-}