first commit of the new libm!
[musl] / src / math / s_llrint.c
diff --git a/src/math/s_llrint.c b/src/math/s_llrint.c
deleted file mode 100644 (file)
index 2b1e00d..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <math.h>
-
-// FIXME: incorrect exception behavior
-
-long long llrint(double x)
-{
-       return rint(x);
-}