2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

protect assert.h from check-includes.pl removal recommendation

This commit is contained in:
David Lawrence
2000-06-23 03:11:01 +00:00
parent 27aa96b186
commit e6e10b96f9

View File

@@ -15,12 +15,12 @@
* SOFTWARE. * SOFTWARE.
*/ */
/* $Id: assert_p.h,v 1.5 2000/06/22 21:59:22 tale Exp $ */ /* $Id: assert_p.h,v 1.6 2000/06/23 03:11:01 tale Exp $ */
#ifndef LWRES_ASSERT_P_H #ifndef LWRES_ASSERT_P_H
#define LWRES_ASSERT_P_H 1 #define LWRES_ASSERT_P_H 1
#include <assert.h> #include <assert.h> /* Required for assert() prototype. */
#define REQUIRE(x) assert(x) #define REQUIRE(x) assert(x)
#define INSIST(x) assert(x) #define INSIST(x) assert(x)