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: 1079beb434b53e1ef3c8a3fa7dd8812674042faa (
plain
)
1
2
3
#include <stdlib.h> int abs(int i) { return (i < 0) ? (-i) : (i); }