gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / libiberty / vfprintf.c
CommitLineData
252b5132
RH
1/* Provide a version vfprintf in terms of _doprnt.
2 By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
533da483 3 Copyright (C) 1998-2020 Free Software Foundation, Inc.
252b5132
RH
4 */
5
1ea16ec5 6#include "ansidecl.h"
252b5132 7#include <stdarg.h>
252b5132
RH
8#include <stdio.h>
9#undef vfprintf
10
11int
49b1fae4 12vfprintf (FILE *stream, const char *format, va_list ap)
252b5132
RH
13{
14 return _doprnt (format, ap, stream);
15}
This page took 0.873476 seconds and 4 git commands to generate.