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