File: vfprintf.c

package info (click to toggle)
egcs64 19980921-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 70,228 kB
  • ctags: 86,158
  • sloc: ansic: 673,828; cpp: 81,202; sh: 16,585; yacc: 14,880; asm: 10,981; lisp: 7,252; makefile: 6,221; exp: 3,236; fortran: 1,795; sed: 587; objc: 482; pascal: 133; ml: 57; 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);
}