fxlibc/src/stdlib/abs.c

8 lines
78 B
C

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