summaryrefslogtreecommitdiffstats
path: root/lib/libc/include
diff options
context:
space:
mode:
authorume <ume@FreeBSD.org>2006-05-21 11:19:36 +0000
committerume <ume@FreeBSD.org>2006-05-21 11:19:36 +0000
commit2103e7a60f93b5663802fad9b458412411640d7c (patch)
treec1044e7b7cb8c4f2ee0140e9bd313cfdfe850d2a /lib/libc/include
parent0cedd121cc954b5d6234228b0747f25f402fb62e (diff)
downloadFreeBSD-src-2103e7a60f93b5663802fad9b458412411640d7c.zip
FreeBSD-src-2103e7a60f93b5663802fad9b458412411640d7c.tar.gz
Upgrade res_update(3) and the friends to BIND9's one excluding TSIG
support. X-MFC after: never
Diffstat (limited to 'lib/libc/include')
-rw-r--r--lib/libc/include/isc/list.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/include/isc/list.h b/lib/libc/include/isc/list.h
index ad574ac..8a6973a 100644
--- a/lib/libc/include/isc/list.h
+++ b/lib/libc/include/isc/list.h
@@ -15,9 +15,16 @@
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+/* $FreeBSD$ */
+
#ifndef LIST_H
#define LIST_H 1
+#ifdef _LIBC
+#include <assert.h>
+#define INSIST(cond) assert(cond)
+#else
#include <isc/assertions.h>
+#endif
#define LIST(type) struct { type *head, *tail; }
#define INIT_LIST(list) \
OpenPOWER on IntegriCloud