tangled
alpha
login
or
join now
overby.me
/
darling-nix
1
fork
atom
this repo has no description
1
fork
atom
overview
issues
pulls
pipelines
darling-nix
/
src
/
libm
/
Source
/
abs.c
at
fixPythonPipStalling
8 lines
63 B
view raw
wrap content
Lubos Dolezel
Restructured source tree to prepare for merge with the "darling" repo
10y ago
f228ae16
1
int
abs
(
int
v
)
2
{
3
if
(
v
<
0
)
4
return
-
v
;
5
else
6
return
v
;
7
}
8