summaryrefslogtreecommitdiff
path: root/kernel/random.c
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-04-17 23:15:36 +0200
committerAnton Kling <anton@kling.gg>2024-04-17 23:15:36 +0200
commite8deee43bc0a8a9bf7664485bb0ce3b886189dae (patch)
treed6e2c2da813d2ca549cf512604d6560579dac2f4 /kernel/random.c
parentb913a159103bedec035207fe4d84c9ad9c313517 (diff)
VFS/LibC: Fix small bugs
Diffstat (limited to 'kernel/random.c')
-rw-r--r--kernel/random.c1
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>