fxlibc/src/stdlib/llabs.c

8 lines
102 B
C

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