From: Jim Meyering Date: Tue, 2 Jan 2001 15:50:18 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: FILEUTILS-4_0_36~102 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=701cc3fe2cd33b16b56d28010b5d6a5c2bd8fab8;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog index d9742d1901..d6203a5113 100644 --- a/old/textutils/ChangeLog +++ b/old/textutils/ChangeLog @@ -1,5 +1,14 @@ 2001-01-02 Jim Meyering + * src/od.c (ulonglong_t): Define place-holder type to avoid some #if + directives. + (LONGEST_INTEGRAL_TYPE): Remove definition. + (MAX_INTEGRAL_TYPE_SIZE): Use ulonglong_t instead of + LONGEST_INTEGRAL_TYPE. + (print_long_long): Compile this function even on systems without + long long support. + (decode_one_format): Remove #if directive. + * src/od.c (decode_one_format): Guard use of print_long_long with `#if HAVE_UNSIGNED_LONG_LONG'. From Darren Salt. Change all `#ifdef HAVE_UNSIGNED_LONG_LONG' to use `#if' instead.