aboutsummaryrefslogtreecommitdiffstats
path: root/test/kvx/prng/prng.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/kvx/prng/prng.h')
-rw-r--r--test/kvx/prng/prng.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/kvx/prng/prng.h b/test/kvx/prng/prng.h
new file mode 100644
index 00000000..6abdb45a
--- /dev/null
+++ b/test/kvx/prng/prng.h
@@ -0,0 +1,10 @@
+#ifndef __PRNG_H__
+#define __PRNG_H__
+
+#include "types.h"
+
+void srand(uint64_t seed);
+
+uint64_t randlong(void);
+
+#endif // __PRNG_H__