2019-12-22 Bruno Haible <bruno@clisp.org>
+ integer_length*: Assume that the compiler supports 'long long'.
+ * lib/integer_length.h (integer_length_ll): Declare unconditionally.
+ * modules/integer_length (Files): Remove longlong.m4.
+ (configure.ac): Don't require AC_TYPE_UNSIGNED_LONG_LONG_INT.
+ * modules/integer_length_l (Files): Remove longlong.m4.
+ (configure.ac): Don't require AC_TYPE_UNSIGNED_LONG_LONG_INT.
+ * modules/integer_length_ll (Files): Remove longlong.m4.
+ (configure.ac): Don't require AC_TYPE_UNSIGNED_LONG_LONG_INT.
+
count-one-bits: Assume that the compiler supports 'long long'.
* lib/count-one-bits.h (count_one_bits_ll): Define unconditionally.
* m4/count-one-bits.m4: Remove file.
The result is >= 0, <= sizeof (unsigned long) * CHAR_BIT. */
extern int integer_length_l (unsigned long x);
-#if HAVE_UNSIGNED_LONG_LONG_INT
/* Returns the integer length of x.
The result is >= 0, <= sizeof (unsigned long long) * CHAR_BIT. */
extern int integer_length_ll (unsigned long long x);
-#endif
#ifdef __cplusplus
}