aboutsummaryrefslogtreecommitdiff
path: root/libc/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/cpu.c')
-rw-r--r--libc/cpu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/cpu.c b/libc/cpu.c
index 9ade464..08e742c 100644
--- a/libc/cpu.c
+++ b/libc/cpu.c
@@ -100,8 +100,9 @@ static u8 cpu_has_feature(u32 feature)
return (cpu_features & feature) != 0;
}
-static void fpu_handler()
+static void fpu_handler(struct regs *r)
{
+ UNUSED(r);
__asm__ volatile("clts");
}