index
:
openlinux.git
master
Openlinux source tree
Kacper Fiedorowicz
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
inttypes
/
imaxabs.c
blob: 3af1df6743120cd2cf5eb16bdc142bbc456cbd4d (
plain
)
1
2
3
4
5
6
#include <stdint.h> intmax_t imaxabs(intmax_t j) { return (j < 0) ? -j : j; }