diff options
author | Anton Kling <anton@kling.gg> | 2023-11-10 15:47:08 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-10 15:47:08 +0100 |
commit | 9a1f977e39d8e9fcb6a9cb2a612f4743e802221d (patch) | |
tree | 1fc53f6e80eb40d24274f2f8967d584b88c6d664 /kernel/random.h | |
parent | 0cb4afef6da5488a128e5aaece435e9aa5f5797e (diff) |
Kernel Style: Change uint*_t -> u*
Diffstat (limited to 'kernel/random.h')
-rw-r--r-- | kernel/random.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/random.h b/kernel/random.h index 437927f..c81bfc6 100644 --- a/kernel/random.h +++ b/kernel/random.h @@ -1,7 +1,7 @@ -#include <stdint.h> +#include <typedefs.h> #include <fs/vfs.h> #include <defs.h> void setup_random(void); void add_random_devices(void); -void get_random(uint8_t* buffer, uint64_t len); +void get_random(u8* buffer, u64 len); |