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

//! The `kernel` prelude

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

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