summaryrefslogtreecommitdiffstats
path: root/lib/libc/arch/arm
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2015-10-27 05:54:49 +0000
committerguenther <guenther@openbsd.org>2015-10-27 05:54:49 +0000
commitaf3276d5e32f3e939032c022c530ad02a9ed9a1e (patch)
tree604dedf2de001eeb1ea72a5dbe57b5c0102b8e55 /lib/libc/arch/arm
parentFree the received radius packet when it is duplicated. (diff)
downloadwireguard-openbsd-af3276d5e32f3e939032c022c530ad02a9ed9a1e.tar.xz
wireguard-openbsd-af3276d5e32f3e939032c022c530ad02a9ed9a1e.zip
Wrap the remaining math functions in libc: __fpclassify*(), __flt_rounds(),
and ldexp(). ok millert@
Diffstat (limited to 'lib/libc/arch/arm')
-rw-r--r--lib/libc/arch/arm/gen/flt_rounds.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/arch/arm/gen/flt_rounds.c b/lib/libc/arch/arm/gen/flt_rounds.c
index 820a07a8b48..98497051c16 100644
--- a/lib/libc/arch/arm/gen/flt_rounds.c
+++ b/lib/libc/arch/arm/gen/flt_rounds.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: flt_rounds.c,v 1.4 2015/10/18 19:30:39 guenther Exp $ */
+/* $OpenBSD: flt_rounds.c,v 1.5 2015/10/27 05:54:49 guenther Exp $ */
/* $NetBSD: flt_rounds.c,v 1.1 2000/12/29 20:13:48 bjh21 Exp $ */
/*
@@ -74,3 +74,4 @@ __flt_rounds()
{
return(map[fpgetround()]);
}
+DEF_STRONG(__flt_rounds);