14 lines
236 B
C
14 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);
|
|
}
|