Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wim Lewis
nettle
Commits
32548061
Commit
32548061
authored
Mar 27, 2010
by
Niels Möller
Browse files
Removed redundant ().
Rev: nettle/shadata.c:1.2
parent
2f7d830f
Changes
1
Hide whitespace changes
Inline
Side-by-side
shadata.c
View file @
32548061
...
...
@@ -25,7 +25,7 @@ int main(int argc UNUSED, char **argv UNUSED)
for
(
i
=
0
;
i
<
64
;
)
{
double
root
=
pow
(
primes
[
i
++
],
third
);
double
fraction
=
root
-
(
floor
(
root
)
)
;
double
fraction
=
root
-
floor
(
root
);
double
value
=
floor
(
ldexp
(
fraction
,
32
));
printf
(
"0x%lxUL, "
,
(
unsigned
long
)
value
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment