//! This module contains compile-time checks only, and will generate no code.
/// If any of the two constants below do not compile, you have not properly setup the rustc cfg flag `espidf_time64`:
/// When compiling against ESP-IDF V5.X or later, you need to define the following in your `.config/cargo.toml` file
/// (look for this file in the root of your binary crate):
/// ```
/// [build]
/// rustflags = "--cfg espidf_time64"
/// ```
///
/// When compiling against ESP-IDF V4.X, you need to remove the above flag
const ESP_IDF_TIME64_CHECK: time_t = 0 as cratetime_t;
const ESP_IDF_TIME64_CHECK_LIBC: time_t = 0 as cratetime_t;
// Check for libc/esp-idf-sys type and constant mismatches.