libbb: fix 64-bit bb_popcnt_long
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
2075553a1b
commit
41b47398f5
1 changed files with 1 additions and 1 deletions
|
@ -399,7 +399,7 @@ uint64_t bb_bswap_64(uint64_t x) FAST_FUNC;
|
||||||
|
|
||||||
unsigned FAST_FUNC bb_popcnt_32(uint32_t m);
|
unsigned FAST_FUNC bb_popcnt_32(uint32_t m);
|
||||||
#if ULONG_MAX > 0xffffffff
|
#if ULONG_MAX > 0xffffffff
|
||||||
unsigned FAST_FUNC bb_popcnt_long(unsigned_long m);
|
unsigned FAST_FUNC bb_popcnt_long(unsigned long m);
|
||||||
#else
|
#else
|
||||||
#define bb_popcnt_long(m) bb_popcnt_32(m)
|
#define bb_popcnt_long(m) bb_popcnt_32(m)
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue