From edee246148d0f7e22ea026e09413d4bcc0cb51dd Mon Sep 17 00:00:00 2001 From: Aaron Crane Date: Thu, 12 Oct 2017 17:56:12 +0200 Subject: Rely on C89 vprintf() --- perlio.c | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'perlio.c') diff --git a/perlio.c b/perlio.c index 122cfccd23..521c274766 100644 --- a/perlio.c +++ b/perlio.c @@ -5221,26 +5221,6 @@ PerlIO_getpos(PerlIO *f, SV *pos) } #endif -#if !defined(HAS_VPRINTF) - -int -vprintf(char *pat, char *args) -{ - _doprnt(pat, args, stdout); - return 0; /* wrong, but perl doesn't use the return - * value */ -} - -int -vfprintf(FILE *fd, char *pat, char *args) -{ - _doprnt(pat, args, fd); - return 0; /* wrong, but perl doesn't use the return - * value */ -} - -#endif - /* print a failure format string message to stderr and fail exit the process using only libc without depending on any perl data structures being initialized. -- cgit v1.2.1