Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / stdio / vfprintf.c
1 /*
2  * vfprintf - formatted output without ellipsis
3  */
4 /* $Id: vfprintf.c,v 1.3 1994/06/24 11:51:59 ceriel Exp $ */
5
6 #include        <stdio.h>
7 #include        <stdarg.h>
8 #include        "loc_incl.h"
9
10 int
11 vfprintf(FILE *stream, const char *format, va_list arg)
12 {
13         return _doprnt (format, arg, stream);
14 }