shithub: scc

ref: ff07f46fcbf903b916be3f35063a5004bbb90daf
dir: /lib/c/src/printf.c/

View raw version
/* See LICENSE file for copyright and license details. */

#include <stdarg.h>
#include <stdio.h>
#undef printf

int
printf(const char * restrict fmt, ...)
{
	int cnt;
	va_list va;

	va_start(va, fmt);
	cnt = vfprintf(stdin, fmt, va);
	va_end(va);
	return cnt;
}