Initial revision
This commit is contained in:
20
lang/cem/libcc.ansi/stdio/vfprintf.c
Normal file
20
lang/cem/libcc.ansi/stdio/vfprintf.c
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* 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)
|
||||
{
|
||||
int retval;
|
||||
|
||||
retval = _doprnt (format, arg, stream);
|
||||
if (io_testflag(stream, _IOLBF))
|
||||
fflush(stream);
|
||||
|
||||
return retval;
|
||||
}
|
||||
Reference in New Issue
Block a user