fxlibc/src/stdlib/labs.c

8 lines
90 B
C

#include <stdlib.h>
#undef labs
long int labs(long int j)
{
return (j >= 0) ? j : -j;
}