]> git.llucax.com Git - software/druntime.git/blobdiff - src/compiler/dmd/util/console.d
Add .gitignore files
[software/druntime.git] / src / compiler / dmd / util / console.d
index 93d7fdfc33ce8859342527ffa61bd5bbb7a0392d..87d969bb627df1dc51274e45636b37f9ad3a604b 100644 (file)
@@ -12,11 +12,11 @@ private
 {
     version (Windows)
     {
-        import sys.windows.windows;
+        import core.sys.windows.windows;
     }
     else version( Posix )
     {
-        import stdc.posix.unistd;
+        import core.sys.posix.unistd;
     }
     import util.string;
 }
@@ -35,7 +35,7 @@ struct Console
         {
             write( 2, val.ptr, val.length );
         }
-        return *this;
+        return this;
     }