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