Module Name: src
Committed By: christos
Date: Sun Dec 1 00:23:11 UTC 2013
Modified Files:
src/include: db.h
Log Message:
add new internal functions
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/include/db.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/include/db.h
diff -u src/include/db.h:1.25 src/include/db.h:1.26
--- src/include/db.h:1.25 Tue Mar 13 17:14:55 2012
+++ src/include/db.h Sat Nov 30 19:23:11 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: db.h,v 1.25 2012/03/13 21:14:55 christos Exp $ */
+/* $NetBSD: db.h,v 1.26 2013/12/01 00:23:11 christos Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
@@ -220,6 +220,9 @@ DB *__bt_open(const char *, int, mode_t,
DB *__hash_open(const char *, int, mode_t, const HASHINFO *, int);
DB *__rec_open(const char *, int, mode_t, const RECNOINFO *, int);
void __dbpanic(DB *);
+struct stat;
+int __dbopen(const char *, int, mode_t, struct stat *);
+int __dbtemp(const char *, struct stat *);
#endif
__END_DECLS
#endif /* !_DB_H_ */