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