Sign in
fuchsia
/
fuchsia
/
HEAD
/
.
/
third_party
/
rust_crates
/
vendor
/
wait-timeout-0.2.1
/
src
/
bin
/
reader.rs
blob: 65fae8bca4d77d63c0ce1c7d03eca0186baf1cea [
file
] [
log
] [
blame
]
use
std
::
io
::{
stdin
,
Read
};
#[
allow
(
unused_must_use
)]
fn
main
()
{
let
mut
buffer
:
[
u8
;
32
]
=
Default
::
default
();
stdin
().
read
(&
mut
buffer
);
}