organize std and make import relative to current file

closes #216
This commit is contained in:
Andrew Kelley
2017-03-26 06:39:28 -04:00
parent 7ce753a16b
commit 5bc9feb5cb
30 changed files with 67 additions and 72 deletions

View File

@@ -1,6 +1,6 @@
const mem = @import("mem.zig");
const io = @import("io.zig");
const os = @import("os.zig");
const os = @import("os/index.zig");
const elf = @import("elf.zig");
const DW = @import("dwarf.zig");
const List = @import("list.zig").List;