use weak symbols for the POSIX functions that will be used by C threads
[musl.git] / src / stdlib / abs.c
blob4806d629d6cd152c8d5b53804fef8f1e2a5df31b
1 int abs(int a)
3 return a>0 ? a : -a;