source: branches/libc-0.6/src/binutils/libiberty/vfprintf.c

Last change on this file was 610, checked in by bird, 22 years ago

This commit was generated by cvs2svn to compensate for changes in r609,
which included commits to RCS files with non-trunk default branches.

  • Property cvs2svn:cvs-rev set to 1.1.1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 428 bytes
Line 
1/* Provide a version vfprintf in terms of _doprnt.
2 By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
3 Copyright (C) 1998 Free Software Foundation, Inc.
4 */
5
6#include "ansidecl.h"
7#ifdef ANSI_PROTOTYPES
8#include <stdarg.h>
9#else
10#include <varargs.h>
11#endif
12#include <stdio.h>
13#undef vfprintf
14
15int
16vfprintf (stream, format, ap)
17 FILE * stream;
18 const char * format;
19 va_list ap;
20{
21 return _doprnt (format, ap, stream);
22}
Note: See TracBrowser for help on using the repository browser.