summaryrefslogtreecommitdiffstats
path: root/usr/klibc/seed48.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/klibc/seed48.c')
-rw-r--r--usr/klibc/seed48.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/usr/klibc/seed48.c b/usr/klibc/seed48.c
new file mode 100644
index 0000000..ccdf183
--- /dev/null
+++ b/usr/klibc/seed48.c
@@ -0,0 +1,18 @@
+/*
+ * seed48.c
+ */
+
+#include <stdlib.h>
+#include <stdint.h>
+#include <string.h>
+
+unsigned short __rand48_seed[3];
+
+unsigned short *seed48(const unsigned short xsubi[3])
+{
+ static unsigned short oldseed[3];
+ memcpy(oldseed, __rand48_seed, sizeof __rand48_seed);
+ memcpy(__rand48_seed, xsubi, sizeof __rand48_seed);
+
+ return oldseed;
+}