diff options
author | Marvin Borner | 2021-04-02 16:17:50 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-02 16:17:50 +0200 |
commit | b62b9d1f33a4911feb9f318ece0c1565f27abf8d (patch) | |
tree | aecea9f7b5bf651b584911cf90c61258b9564556 /libs/libc/random.c | |
parent | d055495f3dbb62f74809d31a84621d6e86d61d0a (diff) |
Replaced target macros
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(); |