summaryrefslogtreecommitdiff
path: root/src/math/llrintf.c
diff options
context:
space:
mode:
authornsz <nsz@port70.net>2012-03-18 20:40:43 +0100
committernsz <nsz@port70.net>2012-03-18 20:40:43 +0100
commit65db00983f3fa5449f20f2694477f9d5116f6ea5 (patch)
treeb71e3a7354cc64caff3ac8707c278df512cfeb36 /src/math/llrintf.c
parent9b6899f2c5cec70af6cea80ead7ba98fd2366ce9 (diff)
downloadmusl-65db00983f3fa5449f20f2694477f9d5116f6ea5.tar.gz
make lrint and llrint functions work without fenv support
Diffstat (limited to 'src/math/llrintf.c')
-rw-r--r--src/math/llrintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/llrintf.c b/src/math/llrintf.c
index e41b6d41..96949a00 100644
--- a/src/math/llrintf.c
+++ b/src/math/llrintf.c
@@ -1,6 +1,6 @@
#include <math.h>
-/* assumes LLONG_MAX > 2^24, see comments in lrint.c */
+/* uses LLONG_MAX > 2^24, see comments in lrint.c */
long long llrintf(float x)
{