index
:
fflibc
main
Marc Pervaz Boocha
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
math
/
imaxabs.c
blob: 3f6c63097960501e1ca6469e9d9f41d6bd326a5f (
plain
) (
blame
)
1
2
3
#include
"maths.h"
extern
intmax_t
imaxabs
(
intmax_t
n
)
{
return
n
<
0
?
-
n
:
n
;
}