mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
a2c5833233
The result of running etc/update-copyright.py --this-year, fixing all the files whose mode is changed by the script, plus a build with --enable-maintainer-mode --enable-cgen-maint=yes, then checking out */po/*.pot which we don't update frequently. The copy of cgen was with commit d1dd5fcc38ead reverted as that commit breaks building of bfp opcodes files.
16 lines
348 B
C
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-2022 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);
|
|
}
|