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