diff options
author | Marvin Borner | 2021-05-20 20:41:24 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-20 20:41:24 +0200 |
commit | 298aaf63f15350e6248d5a96e8c6a63b0ec93e0f (patch) | |
tree | 952331f841b4d02d0b7189da716648df5cdb4d8e /libs/libc/rand.c | |
parent | b22346a9b830b642e684e13cf4946d8ef8d8e1ca (diff) |
Major restructuring
Diffstat (limited to 'libs/libc/rand.c')
-rw-r--r-- | libs/libc/rand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/rand.c b/libs/libc/rand.c index 268a21f..ae715b0 100644 --- a/libs/libc/rand.c +++ b/libs/libc/rand.c @@ -5,7 +5,7 @@ #include <rand.h> #ifdef KERNEL -#include <cpu.h> +#include <drivers/cpu.h> #endif static u32 g_seed = 1; |