libc 0.2.185

Raw FFI bindings to platform libraries like libc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Interface to QuRT (Qualcomm Real-Time OS) C library
//!
//! This module re-exports items from the new module structure.
//! QuRT was introduced after the `src/new/` module structure was established,
//! so all definitions live in `src/new/qurt/` and are re-exported here
//! for compatibility with the existing libc structure.

// Re-export everything from the new qurt module
pub use crate::new::qurt::*;

// Architecture-specific modules (if any are needed in the future)
cfg_if! {
    if #[cfg(target_arch = "hexagon")] {
        // Currently no hexagon-specific items needed beyond what's in new/qurt
    } else {
        // Add other architectures as needed
    }
}