Correct the return types of fueword*().

MFC after:	1 week
Sponsored by:	DARPA
This commit is contained in:
John Baldwin 2020-01-23 23:36:58 +00:00
parent e3e03bc159
commit 03fd4409c7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=357062

View File

@ -34,7 +34,7 @@
.\" .\"
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd April 17, 2018 .Dd January 23, 2020
.Dt FETCH 9 .Dt FETCH 9
.Os .Os
.Sh NAME .Sh NAME
@ -61,11 +61,11 @@
.Fn fuword32 "volatile const void *base" .Fn fuword32 "volatile const void *base"
.Ft int64_t .Ft int64_t
.Fn fuword64 "volatile const void *base" .Fn fuword64 "volatile const void *base"
.Ft long .Ft int
.Fn fueword "volatile const void *base" "long *val" .Fn fueword "volatile const void *base" "long *val"
.Ft int32_t .Ft int
.Fn fueword32 "volatile const void *base" "int32_t *val" .Fn fueword32 "volatile const void *base" "int32_t *val"
.Ft int64_t .Ft int
.Fn fueword64 "volatile const void *base" "int64_t *val" .Fn fueword64 "volatile const void *base" "int64_t *val"
.In sys/resourcevar.h .In sys/resourcevar.h
.Sh DESCRIPTION .Sh DESCRIPTION