File: vfprintf.c

package info (click to toggle)
nvptx-tools 0.20180301-1
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 3,460 kB
  • sloc: ansic: 34,538; sh: 3,311; makefile: 1,157; perl: 299; cpp: 28; exp: 21
file content (15 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (49)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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.
 */

#include "ansidecl.h"
#include <stdarg.h>
#include <stdio.h>
#undef vfprintf

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