Files
binutils-gdb/libiberty/vfprintf.c
Alan Modra c8f306af2f Update year range in copyright notice of binutils files
Avoid warnings about invalid escapes in etc/update-copyright.py by
using raw strings, add BinutilsFilter to skip psql.rc and add
"Kalray SA." as another copyright holder.
2026-01-01 23:22:14 +10:30

16 lines
348 B
C

/* Provide a version vfprintf in terms of _doprnt.
By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
Copyright (C) 1998-2026 Free Software Foundation, Inc.
*/
#include "ansidecl.h"
#include <stdarg.h>
#include <stdio.h>
#undef vfprintf
int
vfprintf (FILE *stream, const char *format, va_list ap)
{
return _doprnt (format, ap, stream);
}