]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/stdlib/labs.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / stdlib / labs.c
1 #include <stdlib.h>
2
3 long labs(long a)
4 {
5 return a>0 ? a : -a;
6 }