From 2477fdcabeae916fe3626cdad50eda4286e7ecb1 Mon Sep 17 00:00:00 2001 From: guenther <> Date: Sat, 5 Sep 2015 11:28:35 +0000 Subject: [PATCH] Use new framework for wrapping dbopen() Move internal declarations from to libc's hidden/db.h ok kettenis@ --- src/include/db.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/include/db.h b/src/include/db.h index 2f1dbe57..90fe790a 100644 --- a/src/include/db.h +++ b/src/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_ */