4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-14 09:49:14 +08:00

8 lines
144 B
C
Raw Normal View History

#include <math.h>
long double rintl (long double x){
long double retval;
__asm__ ("frndint;": "=t" (retval) : "0" (x));
return retval;
}