mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-04-19 17:37:09 +02:00
7 lines
90 B
C
7 lines
90 B
C
#include <stdlib.h>
|
|
#undef labs
|
|
|
|
long int labs(long int j)
|
|
{
|
|
return (j >= 0) ? j : -j;
|
|
}
|