roundf
float roundf(float);
PROTO_STD_DEPRECATED(roundf);
assert(roundf(8.6F) == 9.);
assert(roundf(2.5F) == 3.);
assert(roundf(-2.5F) == -3.);