summaryrefslogtreecommitdiff
path: root/rust/kernel/str.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/kernel/str.rs')
-rw-r--r--rust/kernel/str.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/rust/kernel/str.rs b/rust/kernel/str.rs
index 5c74e5f77601..a1a3581eb546 100644
--- a/rust/kernel/str.rs
+++ b/rust/kernel/str.rs
@@ -13,6 +13,8 @@ use core::{
ops::{self, Deref, DerefMut, Index},
};
+pub mod parse_int;
+
/// Byte string without UTF-8 validity guarantee.
#[repr(transparent)]
pub struct BStr([u8]);