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