fix typo in wordexp.h (note that the function is still unimplemented)
[musl] / src / stdlib / ldiv.c
1 #include <stdlib.h>
2
3 ldiv_t ldiv(long num, long den)
4 {
5         return (ldiv_t){ num/den, num%den };
6 }