aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/lib/prng.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/lib/prng.h')
-rw-r--r--test/mppa/lib/prng.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/mppa/lib/prng.h b/test/mppa/lib/prng.h
new file mode 100644
index 00000000..fee8c865
--- /dev/null
+++ b/test/mppa/lib/prng.h
@@ -0,0 +1,8 @@
+#ifndef __PRNG_H__
+#define __PRNG_H__
+
+void srand(long long seed);
+
+long long randlong(void);
+
+#endif // __PRNG_H__