index
:
sbos.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
userland
/
libc
/
stdlib
/
abs.c
blob: 9e50b0a3b3c1dd626abb4fc95385ecc31f693fe1 (
plain
)
1
2
3
4
5
#include <stdlib.h> int abs(int i) { return (i < 0) ? (-i) : (i); }