summaryrefslogtreecommitdiffstats
path: root/rust/kernel/src/prelude.rs
blob: 75a5017488a481398b23c40ba48b9496572cfb06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: GPL-2.0

//! The `kernel` prelude

pub use alloc::{
    string::String,
    borrow::ToOwned,
};

pub use module::module;

pub use super::{
    println,
    KernelResult,
    KernelModule,
};