blob: 86c2b767cf20eff4064373f580abdb50f9ac341c [file] [log] [blame]
/*
* printf.c
*/
#include <stdio.h>
#include <stdarg.h>
int printf(const char *format, ...)
{
va_list ap;
int rv;
va_start(ap, format);
rv = vfprintf(stdout, format, ap);
va_end(ap);
return rv;
}