00001 /* Provide a version vfprintf in terms of _doprnt. 00002 By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98 00003 Copyright (C) 1998 Free Software Foundation, Inc. 00004 */ 00005 00006 #include "ansidecl.h" 00007 #ifdef ANSI_PROTOTYPES 00008 #include <stdarg.h> 00009 #else 00010 #include <varargs.h> 00011 #endif 00012 #include <stdio.h> 00013 #undef vfprintf 00014 00015 int 00016 vfprintf (stream, format, ap) 00017 FILE * stream; 00018 const char * format; 00019 va_list ap; 00020 { 00021 return _doprnt (format, ap, stream); 00022 }
1.5.6