]> git.llucax.com Git - software/dgc/cdgc.git/blobdiff - gcalloc.d
Add a wrapper script to run programs using CDGC
[software/dgc/cdgc.git] / gcalloc.d
index 26ba3536a75ff9f8c8682fb100d126d6188dbe8f..a7f1ca6670e74d96b08f674a0b0c7d29f3a5cb50 100644 (file)
--- a/gcalloc.d
+++ b/gcalloc.d
@@ -27,7 +27,7 @@
 
 version (Win32)
 {
-    private import tango.sys.win32.UserGdi;
+    import tango.sys.win32.UserGdi;
 
     alias int pthread_t;
 
@@ -40,14 +40,14 @@ version (Win32)
 }
 else version (Posix)
 {
-    private import tango.stdc.posix.sys.mman;
-    private import tango.stdc.stdlib;
+    import tango.stdc.posix.sys.mman;
+    import tango.stdc.stdlib;
 
     //version = GC_Use_Alloc_MMap;
 }
 else
 {
-    private import tango.stdc.stdlib;
+    import tango.stdc.stdlib;
 
     //version = GC_Use_Alloc_Malloc;
 }
@@ -174,7 +174,7 @@ else static if (is(typeof(malloc))) // else version (GC_Use_Alloc_Malloc)
     //       after PAGESIZE bytes used by the GC.
 
 
-    private import gcx; // for PAGESIZE
+    import gcx; // for PAGESIZE
 
 
     const size_t PAGE_MASK = PAGESIZE - 1;