diff options
Diffstat (limited to 'src/stdlib/imaxdiv.c')
-rw-r--r-- | src/stdlib/imaxdiv.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stdlib/imaxdiv.c b/src/stdlib/imaxdiv.c new file mode 100644 index 00000000..b2ce821f --- /dev/null +++ b/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 }; +} |