vfprintf.c 348 B

123456789101112131415
  1. /* Provide a version vfprintf in terms of _doprnt.
  2. By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
  3. Copyright (C) 1998-2022 Free Software Foundation, Inc.
  4. */
  5. #include "ansidecl.h"
  6. #include <stdarg.h>
  7. #include <stdio.h>
  8. #undef vfprintf
  9. int
  10. vfprintf (FILE *stream, const char *format, va_list ap)
  11. {
  12. return _doprnt (format, ap, stream);
  13. }