From 7673281ae403181b91a747a2a293b92a531f62bf Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Tue, 24 Jan 2012 11:23:06 +0100 Subject: [PATCH] CDC fixes for Windows. --- cdc.d | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cdc.d b/cdc.d index 0402d80..e037230 100755 --- a/cdc.d +++ b/cdc.d @@ -92,6 +92,8 @@ */ +import core.stdc.stdlib; + import std.algorithm; import std.array; import std.exception; @@ -103,6 +105,8 @@ import std.range; import std.string; import std.stdio : writeln; +alias std.process.system system; + ///Name of the default compiler, which is the compiler used to build cdc. version(DigitalMars){string compiler = "dmd";}