reactos/lib/sdk/crt/printf/vprintf.c
Johannes Anderwald 6c8e7899a9 - Update to trunk
svn path=/branches/audio-bringup/; revision=49927
2010-12-03 15:05:26 +00:00

19 lines
463 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 streamout(FILE *stream, const char *format, va_list argptr);
int
__cdecl
vprintf(const char *format, va_list argptr)
{
return streamout(stdout, format, argptr);
}