Linux Audio

Check our new training course

In-person Linux kernel drivers training

Jun 16-20, 2025
Register
Loading...
Note: File does not exist in v4.10.11.
1// SPDX-License-Identifier: GPL-2.0
2
3//! Rust single host program sample: module `a`.
4
5pub(crate) fn f(x: i32) {
6    println!("The number is {}.", x);
7}