1999-03-19 22:13:24 -05:00
|
|
|
/* Generic assert.h */
|
1999-08-30 04:08:00 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-25 23:16:36 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2024-03-26 15:45:07 -04:00
|
|
|
* Copyright 1998-2024 The OpenLDAP Foundation.
|
1999-03-19 22:13:24 -05:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
2001-05-28 23:35:56 -04:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
2003-11-25 18:17:08 -05:00
|
|
|
* Public License.
|
|
|
|
|
*
|
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-03-19 22:13:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _AC_ASSERT_H
|
|
|
|
|
#define _AC_ASSERT_H
|
|
|
|
|
|
1999-05-24 19:01:57 -04:00
|
|
|
#undef assert
|
|
|
|
|
|
1999-03-19 22:13:24 -05:00
|
|
|
#ifdef LDAP_DEBUG
|
|
|
|
|
|
|
|
|
|
#if defined( HAVE_ASSERT_H ) || defined( STDC_HEADERS )
|
1999-07-12 23:50:39 -04:00
|
|
|
|
1999-03-19 22:13:24 -05:00
|
|
|
#undef NDEBUG
|
|
|
|
|
#include <assert.h>
|
1999-07-12 23:50:39 -04:00
|
|
|
|
|
|
|
|
#else /* !(HAVE_ASSERT_H || STDC_HEADERS) */
|
|
|
|
|
|
1999-03-19 22:13:24 -05:00
|
|
|
#define LDAP_NEED_ASSERT 1
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* no assert()... must be a very old compiler.
|
|
|
|
|
* create a replacement and hope it works
|
|
|
|
|
*/
|
|
|
|
|
|
2002-12-04 01:17:32 -05:00
|
|
|
LBER_F (void) ber_pvt_assert LDAP_P(( const char *file, int line,
|
2003-11-25 18:17:08 -05:00
|
|
|
const char *test ));
|
1999-06-07 14:35:30 -04:00
|
|
|
|
1999-07-12 23:50:39 -04:00
|
|
|
/* Can't use LDAP_STRING(test), that'd expand to "test" */
|
|
|
|
|
#if defined(__STDC__) || defined(__cplusplus)
|
1999-03-19 22:13:24 -05:00
|
|
|
#define assert(test) \
|
1999-07-12 23:50:39 -04:00
|
|
|
((test) ? (void)0 : ber_pvt_assert( __FILE__, __LINE__, #test ) )
|
|
|
|
|
#else
|
|
|
|
|
#define assert(test) \
|
|
|
|
|
((test) ? (void)0 : ber_pvt_assert( __FILE__, __LINE__, "test" ) )
|
1999-03-19 22:13:24 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-07-12 23:50:39 -04:00
|
|
|
#endif /* (HAVE_ASSERT_H || STDC_HEADERS) */
|
|
|
|
|
|
|
|
|
|
#else /* !LDAP_DEBUG */
|
1999-03-19 22:13:24 -05:00
|
|
|
/* no asserts */
|
|
|
|
|
#define assert(test) ((void)0)
|
1999-07-12 23:50:39 -04:00
|
|
|
#endif /* LDAP_DEBUG */
|
1999-03-19 22:13:24 -05:00
|
|
|
|
|
|
|
|
#endif /* _AC_ASSERT_H */
|