authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2021-01-07 12:58:36 -08:00
committergravatar for hello@nektro.netMeghan <hello@nektro.net> 2021-01-07 12:58:36 -08:00
log9ab0a931b0d78257b262fac27bda81ca0e1fd0e2
tree0d34512abdf94dfebe228ea9bca40fcbfb3f17cf
parent224807533cd7fa90ac300271012014170b2090d1

move c import for yaml to yaml.zig


2 files changed, 3 insertions(+), 4 deletions(-)

src/util/c.zig deleted-3
...@@ -1,3 +0,0 @@
1usingnamespace @cImport({
2 @cInclude("yaml.h");
3});
src/util/yaml.zig+3-1
...@@ -1,6 +1,8 @@...@@ -1,6 +1,8 @@
1const std = @import("std");1const std = @import("std");
22
3const c = @import("./c.zig");3const c = @cImport({
4 @cInclude("yaml.h");
5});
4const u = @import("./index.zig");6const u = @import("./index.zig");
57
6//8//