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