summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: c4c109b090f79883606849f7dc3ff8d599b8c91f (plain)
1
2
3
4
5
6
7
8
9
#![no_std]

#[cfg(reexport_core)]
pub use core::sync::atomic::*;

#[cfg(not(reexport_core))]
mod polyfill;
#[cfg(not(reexport_core))]
pub use polyfill::*;