ack/lang/cem/libcc.ansi/stdio/vprintf.c
2018-06-21 22:33:47 +02:00

14 lines
245 B
C

/*
* vprintf - formatted output without ellipsis to the standard output stream
*/
/* $Id$ */
#include <stdio.h>
#include <stdarg.h>
#include "loc_incl.h"
int vprintf(const char* format, va_list arg)
{
return _doprnt(format, arg, stdout);
}