~ubuntu-branches/ubuntu/dapper/gnats/dapper

« back to all changes in this revision

Viewing changes to libiberty/vprintf.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
 
#ifdef __STDC__
2
 
#include <stdarg.h>
3
 
#else
4
 
#include <varargs.h>
5
 
#endif
6
 
#include <stdio.h>
7
 
#include <ansidecl.h>
8
 
#undef vprintf
9
 
int
10
 
vprintf (format, ap)
11
 
     const char *format;
12
 
     va_list ap;
13
 
{
14
 
  return vfprintf (stdout, format, ap);
15
 
}