mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 09:01:40 +00:00
15 lines
274 B
C
15 lines
274 B
C
|
#include "libm.h"
|
||
|
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
|
||
|
long lrintl(long double x)
|
||
|
{
|
||
|
return lrint(x);
|
||
|
}
|
||
|
#else
|
||
|
#define type long double
|
||
|
#define roundit rintl
|
||
|
#define dtype long
|
||
|
#define fn lrintl
|
||
|
|
||
|
#include "lrint.c"
|
||
|
#endif
|