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.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/mppa/lib/prng.h b/test/mppa/lib/prng.h
index fee8c865..6abdb45a 100644
--- a/test/mppa/lib/prng.h
+++ b/test/mppa/lib/prng.h
@@ -1,8 +1,10 @@
#ifndef __PRNG_H__
#define __PRNG_H__
-void srand(long long seed);
+#include "types.h"
-long long randlong(void);
+void srand(uint64_t seed);
+
+uint64_t randlong(void);
#endif // __PRNG_H__