]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/gcclibs/libiberty/vfprintf.c
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / gcclibs / libiberty / vfprintf.c
1 /* Provide a version vfprintf in terms of _doprnt.
2    By Kaveh Ghazi  (ghazi@caip.rutgers.edu)  3/29/98
3    Copyright (C) 1998 Free Software Foundation, Inc.
4  */
5
6 #include "ansidecl.h"
7 #include <stdarg.h>
8 #include <stdio.h>
9 #undef vfprintf
10
11 int
12 vfprintf (FILE *stream, const char *format, va_list ap)
13 {
14   return _doprnt (format, ap, stream);
15 }