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