On Wed, 9 Oct 2002, Andy Dougherty wrote: > diff -r -u parrot-orig/t/src/sprintf.t parrot-andy/t/src/sprintf.t
> + dval = 1.0e6; > + S = Parrot_sprintf_c(interpreter, "== %g\n", dval); > + printf("%g %s", dval, string_to_cstring(interpreter, S)); Aargh. I forgot Microsoft's C library is going to render that as 1e+006, not 1e+06. Rats. What's needed instead is a strcmp() on the Parrot and stdio values. I'll work up something tomorrow. -- Andy Dougherty [EMAIL PROTECTED]