diff options
author | 2015-10-27 05:54:49 +0000 | |
---|---|---|
committer | 2015-10-27 05:54:49 +0000 | |
commit | af3276d5e32f3e939032c022c530ad02a9ed9a1e (patch) | |
tree | 604dedf2de001eeb1ea72a5dbe57b5c0102b8e55 /lib/libc/arch/arm | |
parent | Free the received radius packet when it is duplicated. (diff) | |
download | wireguard-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.c | 3 |
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); |