summaryrefslogtreecommitdiff
path: root/src/math/llrintl.c
blob: ec2cf86b5251969a7fcaeb0c896f521f2fe24735 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <math.h>
#include <float.h>

#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
long long llrintl(long double x)
{
	return llrint(x);
}
#else
#define type            long double
#define roundit         rintl
#define dtype           long long
#define fn              llrintl

#include "lrint.c"
#endif