summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2015-09-05 11:28:36 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2015-09-05 11:28:36 +0000
commitfa3d47eb688c9209a93a5bb958aab7b6e027a6f8 (patch)
treea78fb27fce231618357b9582c0a56fca63dab49a /include
parent06c89ea3c3bae55b3208d9227f38cf29eae76b5f (diff)
Use new framework for wrapping dbopen()
Move internal declarations from <db.h> to libc's hidden/db.h ok kettenis@
Diffstat (limited to 'include')
-rw-r--r--include/db.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/include/db.h b/include/db.h
index 2f1dbe5723e..90fe790aa71 100644
--- a/include/db.h
+++ b/include/db.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db.h,v 1.10 2015/08/27 04:37:09 guenther Exp $ */
+/* $OpenBSD: db.h,v 1.11 2015/09/05 11:28:35 guenther Exp $ */
/* $NetBSD: db.h,v 1.13 1994/10/26 00:55:48 cgd Exp $ */
/*-
@@ -208,13 +208,4 @@ typedef struct {
__BEGIN_DECLS
DB *dbopen(const char *, int, int, DBTYPE, const void *);
__END_DECLS
-
-#ifdef __DBINTERFACE_PRIVATE
-__BEGIN_HIDDEN_DECLS
-DB *__bt_open(const char *, int, int, const BTREEINFO *, int);
-DB *__hash_open(const char *, int, int, const HASHINFO *, int);
-DB *__rec_open(const char *, int, int, const RECNOINFO *, int);
-void __dbpanic(DB *dbp);
-__END_HIDDEN_DECLS
-#endif
#endif /* !_DB_H_ */