]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/uassert.h
2 ******************************************************************************
4 * Copyright (C) 2002-2003, International Business Machines
5 * Corporation and others. All Rights Reserved.
7 ******************************************************************************
11 * Contains U_ASSERT macro
13 * By default, U_ASSERT just wraps the C library assert macro.
14 * By changing the definition here, the assert behavior for ICU can be changed
15 * without affecting other non-ICU uses of the C library assert().
17 ******************************************************************************
22 /* utypes.h is included to get the proper define for uint8_t */
23 #include "unicode/utypes.h"
28 #define U_ASSERT(exp) assert(exp)