Make c import a little cleaner

This commit is contained in:
Isaac Freund
2020-03-29 19:36:15 +02:00
parent 581de73b6f
commit d0bfa7bb01
11 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
const std = @import("std");
const c = @import("c.zig").c;
const c = @import("c.zig");
const Root = @import("root.zig").Root;
const Server = @import("server.zig").Server;