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