~ubuntu-branches/ubuntu/edgy/gnats/edgy

« back to all changes in this revision

Viewing changes to libiberty/vfprintf.c

  • Committer: Bazaar Package Importer
  • Author(s): Chad Walstrom
  • Date: 2005-03-07 17:56:31 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050307175631-agtm10dvjbemuc64
Tags: 4.1.0-0
* New upstream version
* debian/rules: now uses '--with-lispdir' option instead of environment
  variable overloading. Re-enabled optimization.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
#ifdef __STDC__
7
 
#include <stdarg.h>
8
 
#else
9
 
#include <varargs.h>
10
 
#endif
11
 
#include <stdio.h>
12
 
#undef vfprintf
13
 
 
14
 
int
15
 
vfprintf (stream, format, ap)
16
 
  FILE * stream;
17
 
  const char * format;
18
 
  va_list ap;
19
 
{
20
 
  return _doprnt (format, ap, stream);
21
 
}