mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-22 19:00:56 -04:00
6 lines
76 B
C
6 lines
76 B
C
#include <math.h>
|
|
/*
|
|
long long int lrintf(float x) {
|
|
return floor(x);
|
|
}*/
|