- Fixes the following clang compiler warnings:
rrd_rpncalc.c:999:11: warning: using integer absolute value function
'abs' when argument is of floating point type [-Wabsolute-value]
if (abs(percentile) > 100) {
rrd_rpncalc.c:1103:24: warning: using integer absolute value function
'abs' when argument is of floating point type [-Wabsolute-value]
int idx = round(abs(idxf));
rrd_hw.c:519:36: warning: absolute value function 'abs' given an
argument of type 'long' but has parameter of type 'int' which may
cause truncation of value [-Wabsolute-value]
new_val = ((unsigned long) abs(val)) % mod;