mirror of
https://github.com/fluencelabs/musl
synced 2025-05-05 12:02:13 +00:00
7 lines
78 B
C
7 lines
78 B
C
#include <inttypes.h>
|
|
|
|
intmax_t imaxabs(intmax_t a)
|
|
{
|
|
return a>0 ? a : -a;
|
|
}
|