We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In core:c.odin, c_long is set to both signed and unsigned variants of each size.
core:c.odin
c_long
when ODIN_OS == "windows" { c_long :: i32; } else when size_of(int) == 4 { c_long :: i32; } else { c_long :: i64; } when ODIN_OS == "windows" { c_long :: u32; } else when size_of(uint) == 4 { c_long :: u32; } else { c_long :: u64; }
The text was updated successfully, but these errors were encountered:
This is a bug. I am still working on the import system at the moment so this will be fixed when all the tests have been checked.
Sorry, something went wrong.
No branches or pull requests
In
core:c.odin
,c_long
is set to both signed and unsigned variants of each size.The text was updated successfully, but these errors were encountered: