reactos/reactos/lib/sdk/crt/stdio/lock_file.c
Timo Kreuzer bf49c46b23 [CRT]
New implementation of all printf functions. It's stream based (like MS one is) rather than buffer based (like our old is). Floating point is not 100% finished, but current implementation is good enough to boot. It can be enabled by a config switch.

svn path=/trunk/; revision=49499
2010-11-05 22:21:36 +00:00

15 lines
103 B
C

#include <stdio.h>
void
_cdecl
_lock_file(FILE* file)
{
}
void
_cdecl
_unlock_file(FILE* file)
{
}