move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / stdlib / imaxabs.c
blob8100181930e62701d1e8794b5d845980b762ceb0
1 #include <inttypes.h>
3 intmax_t imaxabs(intmax_t a)
5 return a>0 ? a : -a;