File: vfprintf.c

package info (click to toggle)
egcs1.1 1.1.2-4
  • links: PTS
  • area: main
  • in suites: potato, woody
  • size: 48,720 kB
  • ctags: 55,521
  • sloc: ansic: 468,944; cpp: 56,899; sh: 26,323; asm: 10,913; lisp: 7,252; makefile: 7,001; yacc: 5,674; sed: 587; exp: 555; awk: 223; pascal: 133; csh: 106; ml: 99; perl: 18
file content (21 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Provide a version vfprintf in terms of _doprnt.
   By Kaveh Ghazi  (ghazi@caip.rutgers.edu)  3/29/98
   Copyright (C) 1998 Free Software Foundation, Inc.
 */

#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include <stdio.h>
#undef vfprintf

int
vfprintf (stream, format, ap)
  FILE * stream;
  const char * format;
  va_list ap;
{
  return _doprnt (format, ap, stream);
}