OSDN Git Service

* pt.c (unify): Call maybe_adjust_types_for_deduction when
[pf3gnuchains/gcc-fork.git] / libiberty / vfprintf.c
index ce3fdf9..9bd3ed5 100644 (file)
@@ -1,13 +1,15 @@
+/* Provide a version vfprintf in terms of _doprnt.
+   By Kaveh Ghazi  (ghazi@caip.rutgers.edu)  3/29/98
+   Copyright (C) 1998 Free Software Foundation, Inc.
+ */
+
+#include "ansidecl.h"
+#include <stdarg.h>
 #include <stdio.h>
-#include <varargs.h>
-#include <ansidecl.h>
 #undef vfprintf
 
 int
-vfprintf (file, format, ap)
-     FILE *file;
-     const char *format;
-     va_list ap;
+vfprintf (FILE *stream, const char *format, va_list ap)
 {
-   return _doprnt (format, ap, file);
+  return _doprnt (format, ap, stream);
 }