summaryrefslogtreecommitdiff
path: root/stage3/rng.h
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-23 04:45:48 +0100
committerLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-23 04:45:48 +0100
commit2237fd9d5081a25ae52b19d2efc381a9b48aa6da (patch)
tree1a5558e67815013fe502c3d0a3885c61336f3c26 /stage3/rng.h
parent12f914b5a51e34308437f9a4eccbb33142b3565f (diff)
downloadcuddles-2237fd9d5081a25ae52b19d2efc381a9b48aa6da.tar.xz
seed rng at startup
Diffstat (limited to 'stage3/rng.h')
-rw-r--r--stage3/rng.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/stage3/rng.h b/stage3/rng.h
index fe83ff7..7e3f5ed 100644
--- a/stage3/rng.h
+++ b/stage3/rng.h
@@ -2,5 +2,6 @@
#define RNG_H
int rand();
+void srand(int seed);
#endif