ref: 234d647354c3d8bb99e8a5b3eb892196c26008c2
dir: /lib/c/src/printf.c/
#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; }