xref: /openbsd/gnu/lib/libiberty/src/vfprintf.c (revision 150b7e42)
100bf4279Sespie /* Provide a version vfprintf in terms of _doprnt.
200bf4279Sespie    By Kaveh Ghazi  (ghazi@caip.rutgers.edu)  3/29/98
300bf4279Sespie    Copyright (C) 1998 Free Software Foundation, Inc.
400bf4279Sespie  */
500bf4279Sespie 
625e200daSespie #include "ansidecl.h"
700bf4279Sespie #include <stdarg.h>
800bf4279Sespie #include <stdio.h>
900bf4279Sespie #undef vfprintf
1000bf4279Sespie 
1100bf4279Sespie int
vfprintf(FILE * stream,const char * format,va_list ap)12*150b7e42Smiod vfprintf (FILE *stream, const char *format, va_list ap)
1300bf4279Sespie {
1400bf4279Sespie   return _doprnt (format, ap, stream);
1500bf4279Sespie }
16