diff options
author | Dan Gohman <sunfish@mozilla.com> | 2019-04-23 23:10:38 -0700 |
---|---|---|
committer | Dan Gohman <sunfish@mozilla.com> | 2019-04-23 23:10:38 -0700 |
commit | edd541e67f6fb8ff09b0092777dc7a75fd2cb254 (patch) | |
tree | 2a411fbaf4efd4768f36bdb671e446f6c3452d43 /src/wasi.rs | |
parent | 8a5b230c14cd395d8c26c69f702b9e9927cc3dad (diff) | |
download | rust-libc-edd541e67f6fb8ff09b0092777dc7a75fd2cb254.tar.gz |
Remove FD_SET and related functions for now.
Diffstat (limited to 'src/wasi.rs')
-rw-r--r-- | src/wasi.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/wasi.rs b/src/wasi.rs index 42cb33f492..429bc53f57 100644 --- a/src/wasi.rs +++ b/src/wasi.rs @@ -1060,11 +1060,6 @@ extern { ) -> ::locale_t; pub fn uselocale(loc: ::locale_t) -> ::locale_t; - pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> (); - pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool; - pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> (); - pub fn FD_ZERO(set: *mut fd_set) -> (); - pub fn __wasilibc_register_preopened_fd( fd: c_int, path: *const c_char, |