blob: 383cef38319787d6228c09c99ab70becb674e05e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _DB_H_
#ifdef USE_LIBDB1
# include <db/db.h>
#else
# include <db2/db.h>
/* Internal interface for NSS. */
int __nss_db_open __P((const char *,
DBTYPE, u_int32_t, int, DB_ENV *, DB_INFO *, DB **));
#endif
#endif
|