diff options
author | 1996-10-16 12:28:22 +0000 | |
---|---|---|
committer | 1996-10-16 12:28:22 +0000 | |
commit | 51aa2e966d1e5ecddcae7a87c35f9878b7aa7f54 (patch) | |
tree | 0925e2919df2b54456ef4910e1b5fbb29626951d | |
parent | decl calibrate_cyclecounter, fusword, susword (diff) | |
download | wireguard-openbsd-51aa2e966d1e5ecddcae7a87c35f9878b7aa7f54.tar.xz wireguard-openbsd-51aa2e966d1e5ecddcae7a87c35f9878b7aa7f54.zip |
repair fusword/susword protos
-rw-r--r-- | sys/arch/i386/i386/locore.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index 239bb53babe..1cbf0d0eb1d 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -1269,7 +1269,7 @@ ENTRY(fuword) ret /* - * fusword(caddr_t uaddr); + * fusword(u_short *uaddr); * Fetch a short from the user's address space. */ ENTRY(fusword) @@ -1378,7 +1378,7 @@ ENTRY(suword) ret /* - * susword(caddr_t uaddr, short x); + * susword(u_short *uaddr, short x); * Store a short in the user's address space. */ ENTRY(susword) |