kolibrios/contrib/media/updf/lrintf.c

6 lines
72 B
C
Raw Normal View History

#include <math.h>
long long int lrintf(float x) {
return floor(x);
}