-
Notifications
You must be signed in to change notification settings - Fork 243
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
Switch to core::ffi::c_*
for C types instead of libc::c_*
#297
base: master
Are you sure you want to change the base?
Conversation
…anspiler option to switch back to libc
Bindgen has an option |
We should update this to use the |
core::ffi::c_*
for C types instead of libc::c_*
Much of the generated code is already well usable on stable Rust; even if it's stabilized soon it'd be months until it's on stable. I thus still like the |
Yeah, I agree. A |
|
Based on #294, switches to
std::os::raw
types by default and adds optional--use-libc-types
transpiler argument.