-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
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
Use std::os::raw types instead of libc crate #215
Comments
I found libc crate use of the following items within this project.
Line 37 in 0c26297
I consider |
I agree about replacing the integer aliases like you say. We could also use For the allocation functions, they are currently only used in one place iirc: In |
Thank you for the background on I will create a draft with the replacement with |
Closed in #284 |
It seems that the libc crate is only really useful in
#[no_std]
environments. https://stackoverflow.com/questions/44436515/should-i-use-libcc-char-or-stdosrawc-charWe should see if we can replace all uses of
libc
withstd::os::raw
.The text was updated successfully, but these errors were encountered: