diff options
author | das <das@FreeBSD.org> | 2009-03-14 19:02:28 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2009-03-14 19:02:28 +0000 |
commit | 247bcb9be4910e7ceebf090fb9a1c597a403c9b2 (patch) | |
tree | 0918a178fda53465de2223a86d680e85dee38da4 /include | |
parent | 6c8e20c20417cf66d1ccde9c0b89d8690bc26d28 (diff) | |
download | FreeBSD-src-247bcb9be4910e7ceebf090fb9a1c597a403c9b2.zip FreeBSD-src-247bcb9be4910e7ceebf090fb9a1c597a403c9b2.tar.gz |
Namespace: dbm_forder() and dbm_dirfno() are BSD extensions.
Diffstat (limited to 'include')
-rw-r--r-- | include/ndbm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ndbm.h b/include/ndbm.h index e144ba8..1277e70 100644 --- a/include/ndbm.h +++ b/include/ndbm.h @@ -70,11 +70,15 @@ int dbm_delete(DBM *, datum); int dbm_error(DBM *); datum dbm_fetch(DBM *, datum); datum dbm_firstkey(DBM *); +#if __BSD_VISIBLE long dbm_forder(DBM *, datum); +#endif datum dbm_nextkey(DBM *); DBM *dbm_open(const char *, int, int); int dbm_store(DBM *, datum, datum, int); +#if __BSD_VISIBLE int dbm_dirfno(DBM *); +#endif __END_DECLS #endif /* !_NDBM_H_ */ |