ui.zig: Really fix import of wcwidth() this time

Fixes #183
This commit is contained in:
Yorhel 2021-12-26 11:02:32 +01:00
parent a6f5678088
commit 2b23951e4f

View file

@ -8,11 +8,11 @@ const main = @import("main.zig");
const util = @import("util.zig");
pub const c = @cImport({
@cDefine("_XOPEN_SOURCE", "1");
@cInclude("stdio.h");
@cInclude("string.h");
@cInclude("curses.h");
@cInclude("time.h");
@cDefine("_XOPEN_SOURCE", "1");
@cInclude("wchar.h");
@cInclude("locale.h");
});