emulate SOCK_CLOEXEC and SOCK_NONBLOCK for old (pre-2.6.27) kernels
[oweals/musl.git] / src / stdlib / abs.c
1 int abs(int a)
2 {
3         return a>0 ? a : -a;
4 }