From 14a1bb6a085f0b05427c47452f762a70b8530f23 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 16 Jun 1999 14:31:04 +0000 Subject: Update. 1999-06-14 Andreas Schwab * sysdeps/unix/sysv/linux/sys/sysmacros.h [!__GNUC__]: Use correct word order. * sysdeps/unix/sysv/linux/alpha/sys/sysmacros.h: New file. * sysdeps/unix/sysv/linux/sparc/sys/sysmacros.h: New file. 1999-06-15 Andreas Schwab * db2/db/db.c: Restore __nss_db_open alias. * db2/db_int.h: Use instead of "db.h" to find header in include. * db2/os/os_rw.c (__os_write): Maintain const correctness. * db2/progs/db_load/db_load.c (main): Avoid ambiguous `else'. --- db2/db/db.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'db2/db') 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. -- cgit v1.2.3