]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/vfprintf.c
[libiberty] remove TBAA violation in iterative_hash, improve code-gen
[thirdparty/gcc.git] / libiberty / vfprintf.c
CommitLineData
29382d66
JL
1/* Provide a version vfprintf in terms of _doprnt.
2 By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
a945c346 3 Copyright (C) 1998-2024 Free Software Foundation, Inc.
29382d66
JL
4 */
5
c9ac9147 6#include "ansidecl.h"
29382d66 7#include <stdarg.h>
29382d66 8#include <stdio.h>
6599da04
JM
9#undef vfprintf
10
11int
7a17ef5e 12vfprintf (FILE *stream, const char *format, va_list ap)
6599da04 13{
29382d66 14 return _doprnt (format, ap, stream);
6599da04 15}