Commit | Line | Data |
---|---|---|
252b5132 RH |
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 | ||
1ea16ec5 DD |
6 | #include "ansidecl.h" |
7 | #ifdef ANSI_PROTOTYPES | |
252b5132 RH |
8 | #include <stdarg.h> |
9 | #else | |
10 | #include <varargs.h> | |
11 | #endif | |
12 | #include <stdio.h> | |
13 | #undef vfprintf | |
14 | ||
15 | int | |
16 | vfprintf (stream, format, ap) | |
17 | FILE * stream; | |
18 | const char * format; | |
19 | va_list ap; | |
20 | { | |
21 | return _doprnt (format, ap, stream); | |
22 | } |