Fix compilation in Windows for CRuntime_Microsoft

Use _setmode instead of setmode, because it works for all supported C runtimes on Windows.
This should fix compilation errors for dmd -m32coff, m64, and ldc2 (LDC uses only CRuntime_Microsoft).
This commit is contained in:
ZombineDev 2016-06-14 14:43:45 +03:00
parent 90b68b7e57
commit e92b90bbf8
1 changed files with 3 additions and 3 deletions

View File

@ -113,10 +113,10 @@ else
// On Windows, set stdout to binary mode (needed for correct EOL writing)
// See Phobos' stdio.File.rawWrite
{
import std.stdio : fileno, _O_BINARY, setmode;
import std.stdio : _fileno, _O_BINARY, _setmode;
immutable fd = fileno(output.getFP());
setmode(fd, _O_BINARY);
immutable fd = _fileno(output.getFP());
_setmode(fd, _O_BINARY);
version (CRuntime_DigitalMars)
{
import core.atomic : atomicOp;