mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 04:12:34 +03:00
cd35d38ad2
git-svn-id: svn://kolibrios.org@8429 a494cfbc-eb01-0410-851d-a64ba20cac60
6 lines
72 B
C
6 lines
72 B
C
#include <math.h>
|
|
|
|
long long int lrintf(float x) {
|
|
return floor(x);
|
|
}
|