summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/stdlib/imaxdiv.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/stdlib/imaxdiv.c')
-rw-r--r--libc-top-half/musl/src/stdlib/imaxdiv.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdlib/imaxdiv.c b/libc-top-half/musl/src/stdlib/imaxdiv.c
new file mode 100644
index 0000000..b2ce821
--- /dev/null
+++ b/libc-top-half/musl/src/stdlib/imaxdiv.c
@@ -0,0 +1,6 @@
+#include <inttypes.h>
+
+imaxdiv_t imaxdiv(intmax_t num, intmax_t den)
+{
+ return (imaxdiv_t){ num/den, num%den };
+}