musl-tcc/src/stdlib/abs.c

7 lines
62 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <stdlib.h>
int abs(int a)
{
return a>0 ? a : -a;
}