ldso: notify the debugger when we're doing a dlopen
[musl.git] / src / stdlib / abs.c
blobe721fdc2b17e7917430eca885297b6e2d47986a1
1 #include <stdlib.h>
3 int abs(int a)
5 return a>0 ? a : -a;