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