aboutsummaryrefslogtreecommitdiff
path: root/sys/base/rng/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/base/rng/internal.h')
-rw-r--r--sys/base/rng/internal.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/sys/base/rng/internal.h b/sys/base/rng/internal.h
deleted file mode 100644
index 9cf5f41..0000000
--- a/sys/base/rng/internal.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include <u.h>
-#include <base.h>
-
-#define rol64(x, k) ((x) << (k) | ((x) >> (64-(k))))
-
-typedef struct Rng
-{
- uint64 s[4];
-} Rng;
-
-typedef struct Mix
-{
- uint64 s;
-} Mix;
-
-
-extern Rng rng·RNG;