Re: [PATCH 1/2]vbscript: Implemented builtin function CInt(try 2)

2013-04-21 Thread Zhan Jianyu
On Sun, Apr 21, 2013 at 11:05 PM, Vincent Povirk wrote: > The man page for modf claims it produces an exact fractional part: > http://manpages.ubuntu.com/manpages/quantal/en/man3/modf.3.html > > It's possible for modf to do this because the fractional part of a > floating point number cannot requi

Re: [PATCH 1/2]vbscript: Implemented builtin function CInt(try 2)

2013-04-21 Thread Vincent Povirk
The man page for modf claims it produces an exact fractional part: http://manpages.ubuntu.com/manpages/quantal/en/man3/modf.3.html It's possible for modf to do this because the fractional part of a floating point number cannot require more precision than the original value. So I think you've esse