repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix.git]
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_c99_complex_num.c
blob
c3c952e7b722cf9d16dfc7ee997bae2078bfb695
1
double
cabs
(
double
_Complex
);
2
3
double
cabs
(
double
_Complex foo
)
4
{
5
double
d
=
__real__ foo
;
6
return
d
+
0.1
fi
;
7
}