Initial revision
This commit is contained in:
23
lib/stdio/fprintf.c
Executable file
23
lib/stdio/fprintf.c
Executable file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* fprintf - write output on a stream
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include "loc_incl.h"
|
||||
|
||||
int
|
||||
fprintf(FILE *stream, const char *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
int retval;
|
||||
|
||||
va_start(ap, format);
|
||||
|
||||
retval = _doprnt (format, ap, stream);
|
||||
|
||||
va_end(ap);
|
||||
|
||||
return retval;
|
||||
}
|
||||
Reference in New Issue
Block a user