This website requires JavaScript.
Explore
Help
Sign In
github
/
amiga-libnix3
Watch
1
Star
0
Fork
0
mirror of
https://github.com/diegocr/libnix.git
synced
2026-09-12 03:30:29 +00:00
Code
Releases
Wiki
Activity
Files
master
amiga-libnix3
/
stdlib
/
abs.c
T
Add File
New File
Upload File
Apply Patch
diegocr
27365e3686
Initial commit
2010-07-27 16:58:17 +00:00
3 lines
37 B
C
Raw
Permalink
Blame
History
int
abs
(
int
j
)
{
return
j
>=
0
?
j
:
-
j
;
}
View Git Blame
Copy Permalink