aboutsummaryrefslogtreecommitdiff
path: root/libc/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/cpu.c')
-rw-r--r--libc/cpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/cpu.c b/libc/cpu.c
index 983a4a8..9ade464 100644
--- a/libc/cpu.c
+++ b/libc/cpu.c
@@ -95,12 +95,12 @@ static void cr4_set(u32 cr4)
}
static u32 cpu_features = 0;
-u8 cpu_has_feature(u32 feature)
+static u8 cpu_has_feature(u32 feature)
{
return (cpu_features & feature) != 0;
}
-void fpu_handler()
+static void fpu_handler()
{
__asm__ volatile("clts");
}