summaryrefslogtreecommitdiff
path: root/xorshift.h
diff options
context:
space:
mode:
Diffstat (limited to 'xorshift.h')
-rw-r--r--xorshift.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/xorshift.h b/xorshift.h
deleted file mode 100644
index 64c3ea2..0000000
--- a/xorshift.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include <stdint.h>
-
-#define XORSHIFT_S 16
-
-typedef struct {
- uint64_t s[XORSHIFT_S];
- int p;
-} randctx;
-
-uint64_t xorshift_step (randctx * const st);
-void xorshift_seed (randctx * const st);
-