move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / stdlib / ldiv.c
blob36eb960b09784f12013d34d9b28a16d2a4e1c296
1 #include <stdlib.h>
3 ldiv_t ldiv(long num, long den)
5 return (ldiv_t){ num/den, num%den };