rework langinfo code for ABI compat and for use by time code
[musl] / src / math / lroundl.c
index 1469127..094fdf6 100644 (file)
@@ -1,16 +1,6 @@
-#include "libm.h"
-#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
+#include <math.h>
+
 long lroundl(long double x)
 {
-       return lround(x);
+       return roundl(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