Sign in
pigweed
/
third_party
/
rust_crates
/
3d5b3a9260cbf98746f0e77be5a8251e1fc77af0
/
.
/
crates_std
/
atomic-polyfill-1.0.2
/
src
/
lib.rs
blob: 2fd9f719dc9ef3884601293ee19e7d91f153542d [
file
]
#![
no_std
]
#![
cfg_attr
(
reexport_core
,
forbid
(
unsafe_code
))]
#[
cfg
(
reexport_core
)]
pub
use
core
::
sync
::
atomic
::*;
#[
cfg
(
not
(
reexport_core
))]
mod
polyfill
;
#[
cfg
(
not
(
reexport_core
))]
pub
use
polyfill
::*;