I want to call the error(3) function from Zig.
I can do this by defining a new symbol with a name that is not a Zig keyword:
@cInclude("error.h");
@cDefine("_error", "error");
Is this the recommended way to do this, or is there a different way to get at the name error, as c.error obviously doesn't work?