about summary refs log tree commit diff
path: root/src/fenv/fesetround.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-10 15:51:44 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:32 -0400
commit039f1b3c564667ab6fc9955bd892c2e527eb80b0 (patch)
tree2ef6e7d47c72a8bb1d18bf11a4069bd5d7b4a15e /src/fenv/fesetround.c
parent5e1019b01c968707accc85c99e63a18af665cf27 (diff)
downloadmusl-039f1b3c564667ab6fc9955bd892c2e527eb80b0.tar.gz
musl-039f1b3c564667ab6fc9955bd892c2e527eb80b0.tar.xz
musl-039f1b3c564667ab6fc9955bd892c2e527eb80b0.zip
make arch __fesetround backends hidden
these are not public interfaces and do not match the public function,
but delegate argument checking to it.
Diffstat (limited to 'src/fenv/fesetround.c')
-rw-r--r--src/fenv/fesetround.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fenv/fesetround.c b/src/fenv/fesetround.c
index 9bbd4ade..a85db712 100644
--- a/src/fenv/fesetround.c
+++ b/src/fenv/fesetround.c
@@ -1,8 +1,9 @@
 #include <fenv.h>
+#include "libc.h"
 
 /* __fesetround wrapper for arch independent argument check */
 
-int __fesetround(int);
+hidden int __fesetround(int);
 
 int fesetround(int r)
 {