647:2e6e9d9f2159 | 654:c9d008861178 |
---|---|
26 * POSSIBILITY OF SUCH DAMAGE. | 26 * POSSIBILITY OF SUCH DAMAGE. |
27 */ | 27 */ |
28 | 28 |
29 #include "cx/compare.h" | 29 #include "cx/compare.h" |
30 | 30 |
31 #include <stdint.h> | |
32 #include <math.h> | 31 #include <math.h> |
33 | 32 |
34 int cx_cmp_int(void const *i1, void const *i2) { | 33 int cx_cmp_int(void const *i1, void const *i2) { |
35 int a = *((const int*) i1); | 34 int a = *((const int*) i1); |
36 int b = *((const int*) i2); | 35 int b = *((const int*) i2); |