blob: 1469127b9064c2432a177783c6ef4112b06eb018 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "libm.h"
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
long lroundl(long double x)
{
return lround(x);
}
#else
#define type long double
#define roundit roundl
#define dtype long
#define DTYPE_MIN LONG_MIN
#define DTYPE_MAX LONG_MAX
#define fn lroundl
#include "lround.c"
#endif
|