163
183
Tests if two dulints are equal. */
164
184
#define UT_DULINT_EQ(D1, D2) (((D1).low == (D2).low)\
165
185
&& ((D1).high == (D2).high))
166
187
/****************************************************************
167
188
Sort function for dulint arrays. */
169
191
ut_dulint_sort(dulint* arr, dulint* aux_arr, ulint low, ulint high);
170
192
/*===============================================================*/
193
195
/*************************************************************
194
196
The following function rounds up a pointer to the nearest aligned address. */