1 #include <math.h>
2 
llroundf(float x)3 long long llroundf(float x) {
4     return roundf(x);
5 }
6