You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix build in wasm{32,64}-unknown-unknown with zlib feature
```
error[E0432]: unresolved import `libc::c_int`
--> src/mem.rs:316:13
|
316 | use libc::c_int;
| ^^^^^^^^^^^ no `c_int` in the root
error[E0432]: unresolved imports `libc::c_int`, `libc::c_uint`, `libc::c_void`, `libc::size_t`
--> src/ffi/c.rs:10:16
|
10 | pub use libc::{c_int, c_uint, c_void, size_t};
| ^^^^^ ^^^^^^ ^^^^^^ ^^^^^^ no `size_t` in the root
| | | |
| | | no `c_void` in the root
| | no `c_uint` in the root
| no `c_int` in the root
error[E0432]: unresolved imports `libc::c_char`, `libc::c_int`
--> src/ffi/c.rs:381:16
|
381 | use libc::{c_char, c_int};
| ^^^^^^ ^^^^^ no `c_int` in the root
| |
| no `c_char` in the root
```
0 commit comments