mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 05:00:27 +00:00

Follow original design/style of printf module Always use dosmaperr to convert win32 errors to sane crt errors Enable forgotten _get_doserrno, get_errno, set_doserrno and _gmtime32_s Small fixes to pass more wine tests. Patch by Samuel Serapión. svn path=/trunk/; revision=54661
17 lines
388 B
C
17 lines
388 B
C
/*
|
|
* COPYRIGHT: GNU GPL, see COPYING in the top level directory
|
|
* PROJECT: ReactOS crt library
|
|
* FILE: lib/sdk/crt/printf/vprintf.c
|
|
* PURPOSE: Implementation of vprintf
|
|
* PROGRAMMER: Timo Kreuzer
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
int
|
|
_cdecl
|
|
vprintf(const char *format, va_list argptr)
|
|
{
|
|
return vfprintf(stdout, format, argptr);
|
|
}
|