comparison dbutil.h @ 316:dc6173e09ff7 ucc-axis-hack

smaller yet again
author Matt Johnston <matt@ucc.asn.au>
date Tue, 28 Mar 2006 16:04:11 +0000
parents 044bc108b9b3
children
comparison
equal deleted inserted replaced
314:827f87dfbc22 316:dc6173e09ff7
66 66
67 /* Used to force mp_ints to be initialised */ 67 /* Used to force mp_ints to be initialised */
68 #define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL} 68 #define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
69 69
70 /* Dropbear assertion */ 70 /* Dropbear assertion */
71 #ifndef NDEBUG
71 #define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0) 72 #define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
73 #else
74 #define dropbear_assert(X)
75 #endif
72 76
73 #endif /* _DBUTIL_H_ */ 77 #endif /* _DBUTIL_H_ */