index
:
openlinux.git
master
Openlinux source tree
Kacper Fiedorowicz
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
stdlib
/
abs.c
blob: ac2bc605e875029c414563af298a9b13d0b3a900 (
plain
)
1
2
3
4
int abs(int i) { return (i < 0) ? -i : i; }