diff --git a/tools/bits-info.sh b/tools/bits-info.sh index beb0012c..15f08474 100755 --- a/tools/bits-info.sh +++ b/tools/bits-info.sh @@ -53,6 +53,7 @@ convert_max_signed_int_to_bit() '2147483647') printf '%s\n' '32-bit' ;; # Standard 32-bit limit '32535215999') printf '%s\n' "64-bit (with limit: ${1})" ;; # 64-bit 'date' limited by the OS (likely under Windows) '32535244799') printf '%s\n' '64-bit (limited by Windows localtime function)' ;; # 64-bit 'date' limited by the OS (likely on BusyBox under Windows) + '4294967295') printf '%s\n' "32-bit unsigned" ;; '67767976233529199') printf '%s\n' '64-bit (limited by tzcode bug - 3600)' ;; # 64-bit 'date' limited by the OS - 3600 for timezone diff. (likely on Bash under Windows) '67767976233532799') printf '%s\n' '64-bit (limited by tzcode bug)' ;; # 64-bit 'date' limited by the OS (likely on Bash under Windows) '67768036191673199') printf '%s\n' '64-bit (limited by 32-bit tm_year of tm - 3600)' ;; # 64-bit 'date' limited by the OS - 3600 for timezone diff. (likely under Linux)