Don't let msvcrt import itself and fix the resulting problems
[reactos.git] / reactos / lib / crt / stdio / vsprintf.c
index d51dcf9..ca09681 100644 (file)
@@ -6,7 +6,7 @@
 #include <tchar.h>
 
 int
 #include <tchar.h>
 
 int
-crt_vsprintf(_TCHAR *str, const _TCHAR *fmt, va_list ap)
+_vstprintf(_TCHAR *str, const _TCHAR *fmt, va_list ap)
 {
   FILE f = {0};
   int len;
 {
   FILE f = {0};
   int len;
@@ -22,7 +22,7 @@ crt_vsprintf(_TCHAR *str, const _TCHAR *fmt, va_list ap)
 
 
 int
 
 
 int
-crt__vsnprintf(_TCHAR *str, size_t maxlen, const _TCHAR *fmt, va_list ap)
+_vsntprintf(_TCHAR *str, size_t maxlen, const _TCHAR *fmt, va_list ap)
 {
   FILE f = {0};
   int len;
 {
   FILE f = {0};
   int len;