fix invalid library phdr pointers passed to callback from dl_iterate_phdr
[musl] / src / stdlib / imaxdiv.c
1 #include <inttypes.h>
2
3 imaxdiv_t imaxdiv(intmax_t num, intmax_t den)
4 {
5         return (imaxdiv_t){ num/den, num%den };
6 }