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