K 10 svn:author V 7 delphij K 8 svn:date V 27 2011-03-23T22:08:01.449760Z K 7 svn:log V 344 humanize_number(3) multiply the input number by 100, which could cause an integer overflow when the input is very large (for example, 100 Pi would become about 10 Ei which exceeded signed int64_t). Solve this issue by splitting the division into two parts and avoid the multiplication. PR: bin/146205 Reviewed by: arundel MFC after: 1 month END