diff options
Diffstat (limited to 'lib/libc/fenv/fesetround.c')
| -rw-r--r-- | lib/libc/fenv/fesetround.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/libc/fenv/fesetround.c b/lib/libc/fenv/fesetround.c new file mode 100644 index 00000000..0c7c6bfe --- /dev/null +++ b/lib/libc/fenv/fesetround.c @@ -0,0 +1,8 @@ +#include <fenv.h> + +int __fesetround(int); + +int fesetround(int round) +{ + return __fesetround(round); +} |
