3 * Copyright (c) 1997-2002, Larry Wall
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
11 * "For the rest, they shall represent the other Free Peoples of the World:
12 * Elves, Dwarves, and Men." --Elrond
16 #define PERL_IN_GLOBALS_C
20 Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...)
24 va_start(arglist, format);
25 return PerlIO_vprintf(stream, format, arglist);
29 Perl_printf_nocontext(const char *format, ...)
33 va_start(arglist, format);
34 return PerlIO_vprintf(PerlIO_stdout(), format, arglist);
37 #include "perlapi.h" /* bring in PL_force_link_funcs */