* tree-vrp.c (vrp_prop): Move class to earlier point in the file.
[official-gcc.git] / libiberty / vfprintf.c
blob4e375c949f5a8edaa79ac1b3fd8647742d46a24d
1 /* Provide a version vfprintf in terms of _doprnt.
2 By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
3 Copyright (C) 1998-2017 Free Software Foundation, Inc.
4 */
6 #include "ansidecl.h"
7 #include <stdarg.h>
8 #include <stdio.h>
9 #undef vfprintf
11 int
12 vfprintf (FILE *stream, const char *format, va_list ap)
14 return _doprnt (format, ap, stream);