From e1b90d2058c32ac9067c212d40491bb3d600673a Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Mon, 3 Jul 2017 00:43:36 +0200 Subject: [PATCH] Remove deprecated stdc import --- rdmd.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdmd.d b/rdmd.d index 1850238..5a83b3e 100644 --- a/rdmd.d +++ b/rdmd.d @@ -561,7 +561,7 @@ private int run(string[] args, string output = null, bool replace = false) { /* Windows doesn't have exec, fall back to spawnProcess+wait */ } else { - import std.c.process; + import std.process : execv; auto argv = args.map!toStringz.chain(null.only).array; return execv(argv[0], argv.ptr); }