From: Chip Salzenberg Date: Fri, 19 Nov 1999 17:20:19 +0000 (+0000) Subject: Undef printf before redirecting it to PerlIO_stdoutf. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=39455587272ccf6d83a5aefd9eeb8c2025729f1e;p=p5sagit%2Fp5-mst-13.2.git Undef printf before redirecting it to PerlIO_stdoutf. (Avoids an irritating warning when compiling with PerlIO.) p4raw-id: //depot/perl@4599 --- diff --git a/perl.h b/perl.h index b3ea9fb..3fe64a8 100644 --- a/perl.h +++ b/perl.h @@ -3012,6 +3012,7 @@ typedef struct am_table_short AMTS; * Now we have __attribute__ out of the way * Remap printf */ +#undef printf #define printf PerlIO_stdoutf #endif