Skip to content

Commit

Permalink
lib/bits.c: Finish fix for compiling with gcc 3.0 .. 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Jun 21, 2017
1 parent 33c0529 commit 0913e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/bits.c
Expand Up @@ -12,7 +12,7 @@ size_t nearest_power(size_t num)
return n;
}

#if __GNUC__ > 2
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
/* Lucky you, it's all inline intrinsics */
#else
unsigned int bits_required8(uint8_t num)
Expand Down

0 comments on commit 0913e6e

Please sign in to comment.