mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00

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
15 lines
103 B
C
15 lines
103 B
C
|
|
#include <stdio.h>
|
|
|
|
void
|
|
_cdecl
|
|
_lock_file(FILE* file)
|
|
{
|
|
}
|
|
|
|
void
|
|
_cdecl
|
|
_unlock_file(FILE* file)
|
|
{
|
|
}
|
|
|