]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/vfprintf.c
ggc-common.c (ggc_mark_roots): Use htab_traverse_noresize.
[thirdparty/gcc.git] / libiberty / vfprintf.c
CommitLineData
29382d66
JL
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#ifdef __STDC__
7#include <stdarg.h>
8#else
6599da04 9#include <varargs.h>
29382d66
JL
10#endif
11#include <stdio.h>
6599da04
JM
12#undef vfprintf
13
14int
29382d66
JL
15vfprintf (stream, format, ap)
16 FILE * stream;
17 const char * format;
18 va_list ap;
6599da04 19{
29382d66 20 return _doprnt (format, ap, stream);
6599da04 21}