diff options
author | nik <nik@FreeBSD.org> | 2001-02-11 17:24:25 +0000 |
---|---|---|
committer | nik <nik@FreeBSD.org> | 2001-02-11 17:24:25 +0000 |
commit | f75d644ef5d91dd0e940835d381ab68f557c582c (patch) | |
tree | a1dfd5b5eb69ba647406997836b68fd3cfffa591 /lib/libc/db/man/Makefile.inc | |
parent | ea5e661a0c8897c76720c291763c1873f300514d (diff) | |
download | FreeBSD-src-f75d644ef5d91dd0e940835d381ab68f557c582c.zip FreeBSD-src-f75d644ef5d91dd0e940835d381ab68f557c582c.tar.gz |
Add a man page for the dbm_* functions, and update the Makefile to link
it in.
Some review from -hackers (some time ago), and I think the best way to
get this improved (if it needs improving) or updating, is to bring it in.
PR: docs/12557
Submitted by: Tim Singletary <tsingle@triana.gsfc.nasa.gov>
Diffstat (limited to 'lib/libc/db/man/Makefile.inc')
-rw-r--r-- | lib/libc/db/man/Makefile.inc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/libc/db/man/Makefile.inc b/lib/libc/db/man/Makefile.inc index 1498413..8ccef0a 100644 --- a/lib/libc/db/man/Makefile.inc +++ b/lib/libc/db/man/Makefile.inc @@ -4,7 +4,17 @@ .PATH: ${.CURDIR}/../libc/db/man .if ${LIB} == "c" -MAN3+= btree.3 dbopen.3 hash.3 mpool.3 recno.3 +MAN3+= btree.3 dbm.3 dbopen.3 hash.3 mpool.3 recno.3 +MLINKS+= dbm.3 dbm_clearerr.3 +MLINKS+= dbm.3 dbm_close.3 +MLINKS+= dbm.3 dbm_delete.3 +MLINKS+= dbm.3 dbm_dirnfo.3 +MLINKS+= dbm.3 dbm_error.3 +MLINKS+= dbm.3 dbm_fetch.3 +MLINKS+= dbm.3 dbm_firstkey.3 +MLINKS+= dbm.3 dbm_nextkey.3 +MLINKS+= dbm.3 dbm_open.3 +MLINKS+= dbm.3 dbm_store.3 MLINKS+= dbopen.3 db.3 .endif |