math: tgammal.c fixes
[oweals/musl.git] / src / math / llroundl.c
index 107744a97034ab76c95f01d37ea709658cab942d..2c2ee5ecd68596965567a90347a9b7fc4111b864 100644 (file)
@@ -1,18 +1,6 @@
 #include <math.h>
-#include <float.h>
 
-#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
 long long llroundl(long double x)
 {
-       return llround(x);
+       return roundl(x);
 }
-#else
-#define type            long double
-#define roundit         roundl
-#define dtype           long long
-#define DTYPE_MIN       LLONG_MIN
-#define DTYPE_MAX       LLONG_MAX
-#define fn              llroundl
-
-#include "lround.c"
-#endif