summaryrefslogtreecommitdiff
path: root/src/common/mt_rand.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-08-31 13:22:39 -0600
committerJared Adams <jaxad0127@gmail.com>2009-08-31 13:22:39 -0600
commit67a8847e17aa72981bbf3b4c15167cc0ef499da1 (patch)
tree30b07708a5893712ea1a0bb4835881caa3dd97f7 /src/common/mt_rand.h
parent0e36f6e8d82e7cb0f01683454790a7123ea03197 (diff)
parentdbd9d0321c66deeecf01445f8298aa5076391fbd (diff)
downloadtmwa-67a8847e17aa72981bbf3b4c15167cc0ef499da1.tar.gz
tmwa-67a8847e17aa72981bbf3b4c15167cc0ef499da1.tar.bz2
tmwa-67a8847e17aa72981bbf3b4c15167cc0ef499da1.tar.xz
tmwa-67a8847e17aa72981bbf3b4c15167cc0ef499da1.zip
Merge commit 'taw/master'
Diffstat (limited to 'src/common/mt_rand.h')
-rw-r--r--src/common/mt_rand.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/mt_rand.h b/src/common/mt_rand.h
new file mode 100644
index 0000000..07f6ef0
--- /dev/null
+++ b/src/common/mt_rand.h
@@ -0,0 +1,8 @@
+#ifndef __mt_rand_h
+#define __mt_rand_h
+
+void mt_seed(unsigned long seed);
+unsigned long mt_reload(void);
+unsigned long mt_random(void);
+
+#endif /* __mt_rand_h */