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