musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/math/llrint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/llrint.c')
-rw-r--r--src/math/llrint.c 12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/math/llrint.c b/src/math/llrint.c
index c0a40721..ee783b8e 100644
--- a/src/math/llrint.c
+++ b/src/math/llrint.c
@@ -1,8 +1,8 @@
-#define type double
-#define roundit rint
-#define dtype long long
-#define fn llrint
-
-#include "lrint.c"
+#include <math.h>
+/* assumes LLONG_MAX > 2^53, see comments in lrint.c */
+long long llrint(double x)
+{
+ return rint(x);
+}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月06日 01:39:34 +0000

AltStyle によって変換されたページ (->オリジナル) /