aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-04-11 07:34:56 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-04-11 07:34:56 +0200
commit8a134ec68075fc2fd415558bcf6a37cda3ff285f (patch)
treee6c4927ebcb071b6dcb6e9832ebe6d7f4b721461 /include
parent10673c44f11045a0c99b19f32930097e9b3ae148 (diff)
downloadbusybox-w32-8a134ec68075fc2fd415558bcf6a37cda3ff285f.tar.gz
busybox-w32-8a134ec68075fc2fd415558bcf6a37cda3ff285f.tar.bz2
busybox-w32-8a134ec68075fc2fd415558bcf6a37cda3ff285f.zip
libbb: move isqrt from factor, use it in diff too
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index a2c699b54..04071639a 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -342,6 +342,8 @@ extern int *const bb_errno;
342uint64_t bb_bswap_64(uint64_t x) FAST_FUNC; 342uint64_t bb_bswap_64(uint64_t x) FAST_FUNC;
343#endif 343#endif
344 344
345unsigned long FAST_FUNC isqrt(unsigned long long N);
346
345unsigned long long monotonic_ns(void) FAST_FUNC; 347unsigned long long monotonic_ns(void) FAST_FUNC;
346unsigned long long monotonic_us(void) FAST_FUNC; 348unsigned long long monotonic_us(void) FAST_FUNC;
347unsigned long long monotonic_ms(void) FAST_FUNC; 349unsigned long long monotonic_ms(void) FAST_FUNC;