* Authors: Walter Bright, David Friedman, Sean Kelly
*/
-module gc.alloc;
+module rt.gc.cdgc.alloc;
// C OS-specific API
// to PAGESIZE alignment, there will be space for a void* at the end
// after PAGESIZE bytes used by the GC.
- import gcx; // for PAGESIZE
+ import rt.gc.cdgc.gc: PAGESIZE;
const size_t PAGE_MASK = PAGESIZE - 1;