// devela::sys::env::_reexport_core
use crate::;
/* core macros */
_reexport!
// NOTE: the macro and the module have the same name
//
/// <span class='stab portability' title='re-exported from rust's `core`'>`core`</span>
/// Inspects an environment variable at compile time.
///
///
/// The reason of the `_` suffix is to avoid conflicting with Rust's prelude
/// when glob importing from this crate. Since this macro has the same name
/// as its sibling module `core::env`, in order to be able to re-export
/// only the macro we have to wrap it with our own.
pub use env_;