Hello! am using Lua C library directly by translating and building from source.
But the translated file contains NULL defined as follows:
pub const NULL = @import("std").zig.c_translation.cast(?*anyopaque, @as(c_int, 0));
but that results in the error shown in the image.
but changing its value to
pub const NULL = null;
works just fine!
Any thoughts?