We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
extern fn malloc(size: u64): *void as local_malloc; extern fn malloc(ptr: *void) as local_free; pub fn malloc(size: u64): *void { return local_malloc(size); } pub fn free(ptr: *void) { local_free(ptr); }
Solution:
pub extern fn malloc(size: u64): *void;
It automatically generates another wrapper func that is public...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Solution:
It automatically generates another wrapper func that is public...
The text was updated successfully, but these errors were encountered: