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