tim@callan.UUCP (Tim Smith) (08/27/85)
Printf in version 2.1 of MegaMax C line buffers output. This can cause problems
if you use printf to initialize quickdraw, for example:
main()
{
printf( " " );
MoveTo( 0,0 );
LineTo(10,10);
}
will crash the system, while
main()
{
printf( "\n" );
MoveTo( 0,0 );
LineTo(10,10);
}
will draw a line from 0,0 to 10,10 in the stdout window.
--
Tim Smith
ihnp4!{cithep,wlbr!callan}!tim