ICU-2011 Include utypes.h before assert.h for the proton compiler's broken name mangling

X-SVN-Rev: 9291
This commit is contained in:
George Rhoten 2002-07-23 18:03:54 +00:00
parent 7c556849f0
commit a112484129

View file

@ -19,6 +19,8 @@
#ifndef U_ASSERT_H
#define U_ASSERT_H
/* utypes.h is included to get the proper define for uint8_t */
#include "unicode/utypes.h"
#include <assert.h>
#define U_ASSERT(exp) assert(exp)
#endif