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
Marcus Hoffmann
nettle
Commits
95a27492
Commit
95a27492
authored
Jun 08, 2011
by
Sebastian Reitenbach
Committed by
Niels Möller
Jun 08, 2011
Browse files
(find_first_one): Fixed c99-style declaration. Reported by Sebastian
Reitenbach. Rev: nettle/examples/eratosthenes.c:1.11
parent
d778b2da
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/eratosthenes.c
View file @
95a27492
...
...
@@ -145,10 +145,11 @@ find_first_one (unsigned long x)
7
,
};
unsigned
i
=
0
;
/* Isolate least significant bit */
x
&=
-
x
;
unsigned
i
=
0
;
#if NEED_HANDLE_LARGE_LONG
#ifndef SIZEOF_LONG
/* Can not be tested by the preprocessor. May generate warnings
...
...
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