diff options
Diffstat (limited to 'libs/libc/random.c')
-rw-r--r-- | libs/libc/random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libc/random.c b/libs/libc/random.c index 2801029..5cbbbb6 100644 --- a/libs/libc/random.c +++ b/libs/libc/random.c @@ -14,7 +14,7 @@ void srand(u32 seed) u32 rdrand(void) { -#ifdef kernel +#ifdef KERNEL if (!cpu_has_cfeature(CPUID_FEAT_ECX_RDRND)) return rand(); @@ -31,7 +31,7 @@ u32 rdrand(void) u32 rdseed(void) { -#ifdef kernel +#ifdef KERNEL if (!cpu_has_cfeature(CPUID_FEAT_ECX_RDRND)) return rand(); |