On Thu, 28 Jun 2001, Stas Bekman wrote:

> I've a C question :)
> 
> Why cannot I use:
> 
>     printf("%s\n", "IT WORKS");
> 
> and have to use:
> 
>     fprintf(stderr, "%s\n", "IT WORKS");
> 
> in the mod_perl sources?

something todo with PerlIO, turns printf, fprintf, etc. into macros.
i always use fprintf(stderr, ...) so i've never seen the problem, but
might be a but in PerlIO.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to