diff options
author | 2012-09-29 19:42:30 +0000 | |
---|---|---|
committer | 2012-09-29 19:42:30 +0000 | |
commit | 89bd20d4e1413e35ffabe5a3f6978281d3b17cbb (patch) | |
tree | b215455503bb1b46ffb23a11bd8acc9b3c624f67 | |
parent | Store the base value of coprocessor 0 system register, when running userland, (diff) | |
download | wireguard-openbsd-89bd20d4e1413e35ffabe5a3f6978281d3b17cbb.tar.xz wireguard-openbsd-89bd20d4e1413e35ffabe5a3f6978281d3b17cbb.zip |
Forgot this in previous commit
-rw-r--r-- | sys/arch/mips64/include/cpu.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mips64/include/cpu.h b/sys/arch/mips64/include/cpu.h index ec9027cd123..8ca4a8fe90b 100644 --- a/sys/arch/mips64/include/cpu.h +++ b/sys/arch/mips64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.87 2012/09/29 19:24:31 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.88 2012/09/29 19:42:30 miod Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -553,6 +553,8 @@ void cp0_calibrate(struct cpu_info *); #if defined(_KERNEL) && !defined(_LOCORE) +extern register_t protosr; + struct exec_package; struct user; |