ooh the full source of the printf.dll

Code:
#include "stdafx.h"
#include <stdio.h>

#ifdef __cplusplus
extern "C" {

#endif

__declspec( dllimport ) void cprintf(char *msg, ...);

#ifdef __cplusplus
}
#endif

void cprintf(char *msg, ...)
{
   va_list argList;
   va_start(argList, msg);

   vprintf(msg, argList);

   va_end(argList);
}




3333333333