mirror of
https://github.com/reactos/reactos.git
synced 2025-06-26 00:29:42 +00:00
[UCRT] Fix non-standard extern "C" usage
This commit is contained in:
parent
9ed5151de9
commit
ffd69754f9
27 changed files with 104 additions and 102 deletions
|
@ -23,8 +23,8 @@
|
|||
|
||||
|
||||
// Buffer pointers for stdout and stderr
|
||||
extern "C" void* __acrt_stdout_buffer = nullptr;
|
||||
extern "C" void* __acrt_stderr_buffer = nullptr;
|
||||
extern "C" { void* __acrt_stdout_buffer = nullptr; }
|
||||
extern "C" { void* __acrt_stderr_buffer = nullptr; }
|
||||
|
||||
// The temporary buffer has the data of one stdio call. Stderr and Stdout use a
|
||||
// temporary buffer for the duration of stdio output calls instead of having a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue