mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 10:03:47 +08:00
fd67aa1129
Adds two new external authors to etc/update-copyright.py to cover bfd/ax_tls.m4, and adds gprofng to dirs handled automatically, then updates copyright messages as follows: 1) Update cgen/utils.scm emitted copyrights. 2) Run "etc/update-copyright.py --this-year" with an extra external author I haven't committed, 'Kalray SA.', to cover gas testsuite files (which should have their copyright message removed). 3) Build with --enable-maintainer-mode --enable-cgen-maint=yes. 4) Check out */po/*.pot which we don't update frequently.
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-2024 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);
|
|
}
|