diff options
author | Anton Kling <anton@kling.gg> | 2024-04-17 23:15:36 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-17 23:15:36 +0200 |
commit | e8deee43bc0a8a9bf7664485bb0ce3b886189dae (patch) | |
tree | d6e2c2da813d2ca549cf512604d6560579dac2f4 /kernel/random.c | |
parent | b913a159103bedec035207fe4d84c9ad9c313517 (diff) |
VFS/LibC: Fix small bugs
Diffstat (limited to 'kernel/random.c')
-rw-r--r-- | kernel/random.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/random.c b/kernel/random.c index bb28606..38924ce 100644 --- a/kernel/random.c +++ b/kernel/random.c @@ -1,4 +1,5 @@ // FIXME: This is mostlikely incredibly inefficent and insecure. +#include <assert.h> #include <crypto/ChaCha20/chacha20.h> #include <crypto/SHA1/sha1.h> #include <crypto/xoshiro256plusplus/xoshiro256plusplus.h> |