ui.zig: Fix typo in setting _XOPEN_SOURCE feature test macro

This commit is contained in:
Yorhel 2021-12-21 15:18:35 +01:00
parent 23c59f2874
commit a6f5678088

View file

@ -12,7 +12,7 @@ pub const c = @cImport({
@cInclude("string.h");
@cInclude("curses.h");
@cInclude("time.h");
@cDefine("_X_OPEN_SOURCE", "1");
@cDefine("_XOPEN_SOURCE", "1");
@cInclude("wchar.h");
@cInclude("locale.h");
});