vfprintf.c revision 130562
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#ifdef ANSI_PROTOTYPES
8#include <stdarg.h>
9#else
10#include <varargs.h>
11#endif
12#include <stdio.h>
13#undef vfprintf
14
15int
16vfprintf (stream, format, ap)
17  FILE * stream;
18  const char * format;
19  va_list ap;
20{
21  return _doprnt (format, ap, stream);
22}
23