I get the following error when compiled a translate-c output generated by Zig:
error: incompatible types: 'c_int' and 'bool'
ret &= !(overflow != 0);
If I inspect this file, both ret and overflow have type c_int
I guess makes sense, but does this mean that the translate-c tool generates translations that can't be compiled?
Is there any workaround?