diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/libbb.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index aacff42ee..7cca925b9 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
| @@ -408,7 +408,12 @@ unsigned FAST_FUNC bb_popcnt_long(unsigned long m); | |||
| 408 | #define bb_popcnt_long(m) bb_popcnt_32(m) | 408 | #define bb_popcnt_long(m) bb_popcnt_32(m) |
| 409 | #endif | 409 | #endif |
| 410 | 410 | ||
| 411 | unsigned long FAST_FUNC isqrt(unsigned long long N); | 411 | unsigned FAST_FUNC isqrt(unsigned long N); |
| 412 | #if LLONG_MAX > LONG_MAX | ||
| 413 | unsigned long FAST_FUNC isqrt_ull(unsigned long long N); | ||
| 414 | #else | ||
| 415 | # define isqrt_ull(N) isqrt(N) | ||
| 416 | #endif | ||
| 412 | 417 | ||
| 413 | unsigned long long monotonic_ns(void) FAST_FUNC; | 418 | unsigned long long monotonic_ns(void) FAST_FUNC; |
| 414 | unsigned long long monotonic_us(void) FAST_FUNC; | 419 | unsigned long long monotonic_us(void) FAST_FUNC; |
