diff options
Diffstat (limited to 'db2/db/db.c')
-rw-r--r-- | db2/db/db.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/db2/db/db.c b/db2/db/db.c index 2b4c270324..9f79fd6178 100644 --- a/db2/db/db.c +++ b/db2/db/db.c @@ -84,6 +84,11 @@ static const char sccsid[] = "@(#)db.c 10.75 (Sleepycat) 12/3/98"; } \ } +#ifdef _LIBC +#define db_open(fname, type, flags, mode, dbenv, dbinfo, dbpp) \ + __nss_db_open(fname, type, flags, mode, dbenv, dbinfo, dbpp) +#endif + /* * db_open -- * Main library interface to the DB access methods. @@ -710,6 +715,11 @@ err: /* Close the file descriptor. */ return (ret); } +#ifdef _LIBC +# undef db_open +weak_alias (__nss_db_open, db_open) +#endif + /* * __db_close -- * Close a DB tree. |