diff options
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 6914b5882..01cdb1bdc 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -399,7 +399,7 @@ uint64_t bb_bswap_64(uint64_t x) FAST_FUNC; | |||
399 | 399 | ||
400 | unsigned FAST_FUNC bb_popcnt_32(uint32_t m); | 400 | unsigned FAST_FUNC bb_popcnt_32(uint32_t m); |
401 | #if ULONG_MAX > 0xffffffff | 401 | #if ULONG_MAX > 0xffffffff |
402 | unsigned FAST_FUNC bb_popcnt_long(unsigned_long m); | 402 | unsigned FAST_FUNC bb_popcnt_long(unsigned long m); |
403 | #else | 403 | #else |
404 | #define bb_popcnt_long(m) bb_popcnt_32(m) | 404 | #define bb_popcnt_long(m) bb_popcnt_32(m) |
405 | #endif | 405 | #endif |