fix scanf handling of "0" (followed by immediate EOF) with "%x"
[musl] / src / stdlib / lldiv.c
1 #include <stdlib.h>
2
3 lldiv_t lldiv(long long num, long long den)
4 {
5         return (lldiv_t){ num/den, num%den };
6 }