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