diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-23 04:45:48 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-23 04:45:48 +0100 |
commit | 2237fd9d5081a25ae52b19d2efc381a9b48aa6da (patch) | |
tree | 1a5558e67815013fe502c3d0a3885c61336f3c26 /stage3/rng.h | |
parent | 12f914b5a51e34308437f9a4eccbb33142b3565f (diff) | |
download | cuddles-2237fd9d5081a25ae52b19d2efc381a9b48aa6da.tar.xz |
seed rng at startup
Diffstat (limited to 'stage3/rng.h')
-rw-r--r-- | stage3/rng.h | 1 |
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 |