1 2 3 4 5 6 7 8
#include <math.h> long double roundl (long double x) { /* Add +/- 0.5 then then round towards zero. */ return truncl ( x + (x >= 0.0L ? 0.5L : -0.5L)); }