mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-01 19:24:24 +03:00
8 lines
151 B
C
8 lines
151 B
C
|
#include <math.h>
|
||
|
|
||
|
long double rintl (long double x){
|
||
|
long double retval;
|
||
|
__asm__ ("frndint;": "=t" (retval) : "0" (x));
|
||
|
return retval;
|
||
|
}
|