mirror of
https://github.com/reactos/reactos.git
synced 2025-06-29 00:39: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
|
@ -17,11 +17,11 @@ _CRT_LINKER_FORCE_INCLUDE(__acrt_tmpfile_terminator);
|
|||
// These definitions will cause this object to be linked in whenever the
|
||||
// termination code requires it.
|
||||
#ifndef CRTDLL
|
||||
extern "C" unsigned __acrt_tmpfile_used = 1;
|
||||
extern "C" { unsigned __acrt_tmpfile_used = 1; }
|
||||
#endif
|
||||
|
||||
extern "C" unsigned _tempoff = 1;
|
||||
extern "C" unsigned _old_pfxlen = 0;
|
||||
extern "C" { unsigned _tempoff = 1; }
|
||||
extern "C" { unsigned _old_pfxlen = 0; }
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue