printf.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
printf.c (205B)
---
1 #include <stdarg.h>
2 #include <stdio.h>
3
4 #undef printf
5
6 int
7 printf(const char *restrict fmt, ...)
8 {
9 int cnt;
10 va_list va;
11
12 va_start(va, fmt);
13 cnt = vfprintf(stdout, fmt, va);
14 va_end(va);
15 return cnt;
16 }