src/compare.c

changeset 650
77021e06b1a8
parent 631
406376e64fd8
child 678
78f943d76f50
equal deleted inserted replaced
649:12c2b10b51a9 650:77021e06b1a8
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);

mercurial