Initial revision
This commit is contained in:
14
lib/stdio/vprintf.c
Executable file
14
lib/stdio/vprintf.c
Executable file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* 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);
|
||||
}
|
||||
Reference in New Issue
Block a user