1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

Update the definition of modspecific structure

PR:		docs/125630
This commit is contained in:
Daniel Gerzo 2008-07-15 10:06:37 +00:00
parent 36e6513df5
commit a624bb23e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=180534

View File

@ -25,7 +25,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd June 13, 2007
.Dd July 15, 2008
.Dt MODSTAT 2
.Os
.Sh NAME
@ -55,9 +55,9 @@ struct module_stat {
};
typedef union modspecific {
int intval;
u_int u_intval;
u_int uintval;
long longval;
u_long u_longval;
u_long ulongval;
} modspecific_t;
.Ed
.Pp