diff options
Diffstat (limited to 'io/vprintf.c')
-rw-r--r-- | io/vprintf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/io/vprintf.c b/io/vprintf.c new file mode 100644 index 0000000..406332e --- /dev/null +++ b/io/vprintf.c @@ -0,0 +1,6 @@ +#include "io.h" + +int vprintf(char const *restrict format, va_list arg) +{ + return _vfprintf_wrap(_stdstream_wrap(stream_output), format, arg); +} |