xref: /netbsd-src/external/gpl3/binutils/dist/libiberty/vfprintf.c (revision cb63e24e8d6aae7ddac1859a9015f48b1d8bd90e)
1 /* Provide a version vfprintf in terms of _doprnt.
2    By Kaveh Ghazi  (ghazi@caip.rutgers.edu)  3/29/98
3    Copyright (C) 1998-2024 Free Software Foundation, Inc.
4  */
5 
6 #include "ansidecl.h"
7 #include <stdarg.h>
8 #include <stdio.h>
9 #undef vfprintf
10 
11 int
vfprintf(FILE * stream,const char * format,va_list ap)12 vfprintf (FILE *stream, const char *format, va_list ap)
13 {
14   return _doprnt (format, ap, stream);
15 }
16