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