Sign in
android
/
toolchain
/
cargo-deny
/
HEAD
/
.
/
android
/
vendor
/
target-lexicon-0.12.14
/
examples
/
host.rs
blob: 055e0bffdbbaee65d8a1fd4c53db10bd61cef361 [
file
] [
log
] [
blame
]
extern
crate target_lexicon
;
use
target_lexicon
::
HOST
;
fn
main
()
{
println
!(
"{}"
,
HOST
.
pointer_width
()
.
expect
(
"architecture should be known"
)
.
bytes
()
);
}