xref: /reactos/sdk/lib/crt/printf/vprintf.c (revision c2c66aff)
1 /*
2  * COPYRIGHT:       GNU GPL, see COPYING in the top level directory
3  * PROJECT:         ReactOS crt library
4  * FILE:            lib/sdk/crt/printf/vprintf.c
5  * PURPOSE:         Implementation of vprintf
6  * PROGRAMMER:      Timo Kreuzer
7  */
8 
9 #include <stdio.h>
10 #include <stdarg.h>
11 
12 int
13 __cdecl
vprintf(const char * format,va_list argptr)14 vprintf(const char *format, va_list argptr)
15 {
16     return vfprintf(stdout, format, argptr);
17 }
18