From 872cf03f26c2801ae6c3008ce5fa0d7856f5f85d Mon Sep 17 00:00:00 2001 From: Kacper Date: Sun, 14 Dec 2025 18:10:13 +0100 Subject: libc: implement err/warn functions --- lib/libc/fenv/fesetround.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/libc/fenv/fesetround.c (limited to 'lib/libc/fenv/fesetround.c') 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 + +int __fesetround(int); + +int fesetround(int round) +{ + return __fesetround(round); +} -- cgit v1.2.3