Skip to content
Snippets Groups Projects
Commit 2b23951e authored by Yorhel's avatar Yorhel
Browse files

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

Fixes #183
parent a6f56780
No related branches found
No related tags found
No related merge requests found
......@@ -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");
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment