diff options
author | ru <ru@FreeBSD.org> | 2001-10-01 16:09:29 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-10-01 16:09:29 +0000 |
commit | 623da62a5a107f8c09ce13cac2352200842890c6 (patch) | |
tree | 0ba5da0413d7f6bd39551fb636861f2919892751 /lib/libc/db | |
parent | 0163eae9720c84e99a846110ca1db02eab99186e (diff) | |
download | FreeBSD-src-623da62a5a107f8c09ce13cac2352200842890c6.zip FreeBSD-src-623da62a5a107f8c09ce13cac2352200842890c6.tar.gz |
mdoc(7) police: Use the new .In macro for #include statements.
Diffstat (limited to 'lib/libc/db')
-rw-r--r-- | lib/libc/db/man/btree.3 | 4 | ||||
-rw-r--r-- | lib/libc/db/man/dbm.3 | 4 | ||||
-rw-r--r-- | lib/libc/db/man/dbopen.3 | 6 | ||||
-rw-r--r-- | lib/libc/db/man/hash.3 | 4 | ||||
-rw-r--r-- | lib/libc/db/man/mpool.3 | 4 | ||||
-rw-r--r-- | lib/libc/db/man/recno.3 | 4 |
6 files changed, 13 insertions, 13 deletions
diff --git a/lib/libc/db/man/btree.3 b/lib/libc/db/man/btree.3 index 9fabb3a..99b2b15 100644 --- a/lib/libc/db/man/btree.3 +++ b/lib/libc/db/man/btree.3 @@ -39,8 +39,8 @@ .Nm btree .Nd "btree database access method" .Sh SYNOPSIS -.Fd "#include <sys/types.h>" -.Fd "#include <db.h>" +.In sys/types.h +.In db.h .Sh DESCRIPTION The routine .Fn dbopen diff --git a/lib/libc/db/man/dbm.3 b/lib/libc/db/man/dbm.3 index e8a21bb..961ea85 100644 --- a/lib/libc/db/man/dbm.3 +++ b/lib/libc/db/man/dbm.3 @@ -33,8 +33,8 @@ .Nm dbm_store .Nd database access functions .Sh SYNOPSIS -.Fd #include <fcntl.h> -.Fd #include <ndbm.h> +.In fcntl.h +.In ndbm.h .Ft DBM * .Fn dbm_open "const char *base" "int flags" "int mode" .Ft void diff --git a/lib/libc/db/man/dbopen.3 b/lib/libc/db/man/dbopen.3 index 5d38d57..e25e575 100644 --- a/lib/libc/db/man/dbopen.3 +++ b/lib/libc/db/man/dbopen.3 @@ -39,9 +39,9 @@ .Nm dbopen .Nd "database access methods" .Sh SYNOPSIS -.Fd "#include <sys/types.h>" -.Fd "#include <limits.h>" -.Fd "#include <db.h>" +.In sys/types.h +.In limits.h +.In db.h .Ft DB * .Fn dbopen "const char *file" "int flags" "int mode" "DBTYPE type" "const void *openinfo" .Sh DESCRIPTION diff --git a/lib/libc/db/man/hash.3 b/lib/libc/db/man/hash.3 index f75b8e7..4ed6df9 100644 --- a/lib/libc/db/man/hash.3 +++ b/lib/libc/db/man/hash.3 @@ -39,8 +39,8 @@ .Nm hash .Nd "hash database access method" .Sh SYNOPSIS -.Fd "#include <sys/types.h>" -.Fd "#include <db.h>" +.In sys/types.h +.In db.h .Sh DESCRIPTION The routine .Fn dbopen diff --git a/lib/libc/db/man/mpool.3 b/lib/libc/db/man/mpool.3 index d3d401d..38787167 100644 --- a/lib/libc/db/man/mpool.3 +++ b/lib/libc/db/man/mpool.3 @@ -39,8 +39,8 @@ .Nm mpool .Nd "shared memory buffer pool" .Sh SYNOPSIS -.Fd "#include <db.h>" -.Fd "#include <mpool.h>" +.In db.h +.In mpool.h .Ft MPOOL * .Fn mpool_open "void *key" "int fd" "pgno_t pagesize" "pgno_t maxcache" .Ft void diff --git a/lib/libc/db/man/recno.3 b/lib/libc/db/man/recno.3 index 334e094..0780356 100644 --- a/lib/libc/db/man/recno.3 +++ b/lib/libc/db/man/recno.3 @@ -39,8 +39,8 @@ .Nm recno .Nd "record number database access method" .Sh SYNOPSIS -.Fd "#include <sys/types.h>" -.Fd "#include <db.h>" +.In sys/types.h +.In db.h .Sh DESCRIPTION The routine .Fn dbopen |