diff -r e1e3b768ae8b -r b7753273f0fd src/ucx/utils.h --- a/src/ucx/utils.h Mon May 14 18:20:56 2018 +0200 +++ b/src/ucx/utils.h Mon May 14 18:23:35 2018 +0200 @@ -212,7 +212,7 @@ * 1 if *f1 is greater than *f2 */ -int ucx_floatcmp(const void *f1, const void *f2, void *data); +int ucx_cmp_float(const void *f1, const void *f2, void *data); /** * Compares two real numbers of type double. @@ -222,7 +222,7 @@ * @return -1, if *d1 is less than *d2, 0 if both are equal, * 1 if *d1 is greater than *d2 */ -int ucx_doublecmp(const void *d1, const void *d2, void *data); +int ucx_cmp_double(const void *d1, const void *d2, void *data); /** * Compares two pointers.