mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 12:22:35 +03:00
7 lines
77 B
C
7 lines
77 B
C
|
#include <math.h>
|
||
|
/*
|
||
|
long long int lrintf(float x) {
|
||
|
return floor(x);
|
||
|
}
|
||
|
*/
|