Sign in
fuchsia
/
third_party
/
rust
/
35e104a173f1639d028e95c1b11016f2d46f4b9c
/
.
/
library
/
std
/
src
/
sys
/
anonymous_pipe
/
unsupported.rs
blob: a0805ba9540e022669e7b82228e419ef3bee78b7 [
file
] [
log
] [
blame
]
use
crate
::
io
;
pub
use
crate
::
sys
::
pipe
::
AnonPipe
;
#[
inline
]
pub
fn
pipe
()
->
io
::
Result
<(
AnonPipe
,
AnonPipe
)>
{
Err
(
io
::
Error
::
UNSUPPORTED_PLATFORM
)
}