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.
1 parent 4d0e84b commit 7ba5e34Copy full SHA for 7ba5e34
src/wasi.rs
@@ -312,17 +312,6 @@ pub struct dirent {
312
pub d_name: [c_char; 0],
313
}
314
315
-// intentionally not public, only used for fd_set
316
-cfg_if! {
317
- if #[cfg(target_pointer_width = "32")] {
318
- const ULONG_SIZE: usize = 32;
319
- } else if #[cfg(target_pointer_width = "64")] {
320
- const ULONG_SIZE: usize = 64;
321
- } else {
322
- // Unknown target_pointer_width
323
- }
324
-}
325
-
326
pub const EXIT_SUCCESS: c_int = 0;
327
pub const EXIT_FAILURE: c_int = 1;
328
pub const STDIN_FILENO: c_int = 0;
0 commit comments