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
/
labs.c
blob: 1413af3a4f34f35622cce195ac0147c32d9099cc (
plain
)
1
2
3
4
5
6
#include <stdlib.h> long labs(long i) { return i < 0 ? -i : i; }