simplify lround and llround functions
[musl] / src / math / llround.c
index c11fc3b..4d94787 100644 (file)
@@ -1,10 +1,6 @@
-#define type            double
-#define roundit         round
-#define dtype           long long
-#define DTYPE_MIN       LLONG_MIN
-#define DTYPE_MAX       LLONG_MAX
-#define fn              llround
-
-#include "lround.c"
-
+#include <math.h>
 
+long long llround(double x)
+{
+       return round(x);
+}