diff options
author | 2021-03-06 09:20:49 +0000 | |
---|---|---|
committer | 2021-03-06 09:20:49 +0000 | |
commit | 0bca52fc7c89ec4766656ff7feea08eaab3446cb (patch) | |
tree | 1d0d23b530430d3b6ab4e3cbd22d577b85e6eb12 /sys/lib/libkern | |
parent | put back Lst_Destroy(paths) where it belongs (diff) | |
download | wireguard-openbsd-0bca52fc7c89ec4766656ff7feea08eaab3446cb.tar.xz wireguard-openbsd-0bca52fc7c89ec4766656ff7feea08eaab3446cb.zip |
ansi
Diffstat (limited to 'sys/lib/libkern')
-rw-r--r-- | sys/lib/libkern/muldi3.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/lib/libkern/muldi3.c b/sys/lib/libkern/muldi3.c index f854a5c0dd6..d9d64e3a4b8 100644 --- a/sys/lib/libkern/muldi3.c +++ b/sys/lib/libkern/muldi3.c @@ -93,8 +93,7 @@ static quad_t __lmulq(u_int, u_int); quad_t -__muldi3(a, b) - quad_t a, b; +__muldi3(quad_t a, quad_t b) { union uu u, v, low, prod; u_int high, mid, udiff, vdiff; |