MFC: v1.18 and v.120

Sprinkle a few stars where they belong.
This commit is contained in:
jmg 2006-05-11 13:43:17 +00:00
parent b7536e5b49
commit e9265d9ae0

View File

@ -38,14 +38,14 @@ and DEVFS registration for devices
.Sh SYNOPSIS
.In sys/param.h
.In sys/conf.h
.Ft struct cdev
.Ft struct cdev *
.Fn make_dev "struct cdevsw *cdevsw" "int minor" "uid_t uid" "gid_t gid" "int perms" "const char *fmt" ...
.Ft struct cdev
.Fn make_dev_alias "struct cdev pdev" "const char *fmt" ...
.Ft struct cdev *
.Fn make_dev_alias "struct cdev *pdev" "const char *fmt" ...
.Ft void
.Fn destroy_dev "struct cdev dev"
.Fn destroy_dev "struct cdev *dev"
.Ft void
.Fn dev_depends "struct cdev pdev" "struct cdev cdev"
.Fn dev_depends "struct cdev *pdev" "struct cdev *cdev"
.Sh DESCRIPTION
The
.Fn make_dev