source: vendor/binutils/current/libiberty/vfprintf.c

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

binutils v2.14 - offical sources.

  • 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.