Skip to content

Commit

Permalink
Try to restore compilability with ltsmaster
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed Feb 19, 2019
1 parent 5e48100 commit 22ab436
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions dmd/root/file.d
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ import core.stdc.stdio;
import core.stdc.stdlib;
import core.sys.posix.fcntl;
import core.sys.posix.unistd;
import core.sys.windows.winbase;
import core.sys.windows.winnt;
version (Windows)
{
import core.sys.windows.winbase;
import core.sys.windows.winnt;
}
import dmd.root.filename;
import dmd.root.rmem;
import dmd.utils;
Expand Down
5 changes: 3 additions & 2 deletions dmd/root/man.d
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ import core.stdc.stdio;
import core.stdc.stdlib;
import core.stdc.string;
import core.sys.posix.unistd;
import core.sys.windows.shellapi;
import core.sys.windows.winuser;

version (Windows)
{
import core.sys.windows.shellapi;
import core.sys.windows.winuser;

extern (C++) void browse(const(char)* url)
in
{
Expand Down

0 comments on commit 22ab436

Please sign in to comment.