From: sean Date: Mon, 13 Oct 2008 19:38:22 +0000 (+0000) Subject: Fixed a build error on Linux. X-Git-Url: https://git.llucax.com/software/druntime.git/commitdiff_plain/2f6ab5db873a7179314a5918a3eee90072c7f5fc Fixed a build error on Linux. git-svn-id: http://svn.dsource.org/projects/druntime/trunk@25 4a9d5153-6564-4b3f-b5e1-7e8e9dac548f --- diff --git a/src/compiler/dmd/cover.d b/src/compiler/dmd/cover.d index 7d880e1..ca8381f 100644 --- a/src/compiler/dmd/cover.d +++ b/src/compiler/dmd/cover.d @@ -12,14 +12,17 @@ * Authors: Walter Bright, Sean Kelly */ -module rt. cover; +module rt.cover; private { version( Windows ) import sys.windows.windows; else version( Posix ) + { + import stdc.posix.fcntl; import stdc.posix.unistd; + } import bitmanip; import stdc.stdio; import util.utf;