mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:13:23 +00:00
[CMAKE]
Sync trunk (rr49606) svn path=/branches/cmake-bringup/; revision=49607
This commit is contained in:
commit
406dfdbc87
324 changed files with 15065 additions and 2892 deletions
|
@ -2814,6 +2814,7 @@ FILE* CDECL tmpfile(void)
|
|||
return file;
|
||||
}
|
||||
|
||||
#ifndef USE_NEW_SPRINTF
|
||||
/*********************************************************************
|
||||
* vfprintf (MSVCRT.@)
|
||||
*/
|
||||
|
@ -2947,6 +2948,7 @@ int CDECL printf(const char *format, ...)
|
|||
va_end(valist);
|
||||
return res;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*********************************************************************
|
||||
* ungetc (MSVCRT.@)
|
||||
|
@ -2984,6 +2986,7 @@ wint_t CDECL ungetwc(wint_t wc, FILE * file)
|
|||
return mwc;
|
||||
}
|
||||
|
||||
#ifndef USE_NEW_SPRINTF
|
||||
/*********************************************************************
|
||||
* wprintf (MSVCRT.@)
|
||||
*/
|
||||
|
@ -2996,6 +2999,7 @@ int CDECL wprintf(const wchar_t *format, ...)
|
|||
va_end(valist);
|
||||
return res;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*********************************************************************
|
||||
* _getmaxstdio (MSVCRT.@)
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* Lars Wirzenius & Linus Torvalds
|
||||
* Wirzenius wrote this portably, Torvalds fucked it up :-)
|
||||
*/
|
||||
|
||||
#ifndef USE_NEW_SPRINTF
|
||||
#include <precomp.h>
|
||||
|
||||
#include <wchar.h>
|
||||
|
@ -879,3 +879,4 @@ int __cdecl vsprintf(char *buf, const char *fmt, va_list args)
|
|||
}
|
||||
#endif
|
||||
/* EOF */
|
||||
#endif
|
||||
|
|
15
lib/sdk/crt/stdio/lock_file.c
Normal file
15
lib/sdk/crt/stdio/lock_file.c
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
void
|
||||
_cdecl
|
||||
_lock_file(FILE* file)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
_cdecl
|
||||
_unlock_file(FILE* file)
|
||||
{
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue