Libraries updates and cleanup
* Updating common/lib * Updating lib/csu * Updating lib/libc * Updating libexec/ld.elf_so * Corrected test on __minix in featuretest to actually follow the meaning of the comment. * Cleaned up _REENTRANT-related defintions. * Disabled -D_REENTRANT for libfetch * Removing some unneeded __NBSD_LIBC defines and tests Change-Id: Ic1394baef74d11b9f86b312f5ff4bbc3cbf72ce2
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $NetBSD: db.h,v 1.24 2008/08/26 21:18:38 joerg Exp $ */
|
||||
/* $NetBSD: db.h,v 1.25 2012/03/13 21:14:55 christos Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990, 1993, 1994
|
||||
@@ -214,8 +214,7 @@ DB *dbopen(const char *, int, mode_t, DBTYPE, const void *);
|
||||
|
||||
#ifdef __DBINTERFACE_PRIVATE
|
||||
|
||||
#define _DBMASK(a) (~((1ULL << (sizeof(a) * NBBY)) - 1))
|
||||
#define _DBFIT(a, t) _DIAGASSERT(((a) & _DBMASK(t)) == 0)
|
||||
#define _DBFIT(a, t) _DIAGASSERT(__type_fit(t, a))
|
||||
|
||||
DB *__bt_open(const char *, int, mode_t, const BTREEINFO *, int);
|
||||
DB *__hash_open(const char *, int, mode_t, const HASHINFO *, int);
|
||||
|
||||
Reference in New Issue
Block a user