Fixed wrong include in synopsis.

Fixed bitrot in synopsis.  Const'ification of make_dev() and
make_dev_alias() had not reached here.
This commit is contained in:
Bruce Evans 2001-10-04 06:22:22 +00:00
parent b5c9f90bf5
commit 212c98aae9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84438

View File

@ -36,12 +36,12 @@
.Vt dev_t Ns 's
and DEVFS registration for devices
.Sh SYNOPSIS
.In sys/types.h
.In sys/param.h
.In sys/conf.h
.Ft dev_t
.Fn make_dev "struct cdevsw *cdevsw" "int minor" "uid_t uid" "gid_t gid" "int perms" "char *fmt" ...
.Fn make_dev "struct cdevsw *cdevsw" "int minor" "uid_t uid" "gid_t gid" "int perms" "const char *fmt" ...
.Ft dev_t
.Fn make_dev_alias "dev_t pdev" "char *fmt" ...
.Fn make_dev_alias "dev_t pdev" "const char *fmt" ...
.Ft void
.Fn destroy_dev "dev_t dev"
.Ft void