forked from KolibriOS/kolibrios
6 lines
72 B
C
6 lines
72 B
C
#include <math.h>
|
|
|
|
long long int lrintf(float x) {
|
|
return floor(x);
|
|
}
|