mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-10 04:05:01 +00:00
15 lines
219 B
Rust
15 lines
219 B
Rust
#![no_std]
|
|
#![deny(warnings)]
|
|
|
|
#[inline(never)]
|
|
#[no_mangle]
|
|
pub fn wrapping_external_fn(a: u32) -> u32 {
|
|
a.wrapping_mul(a)
|
|
}
|
|
|
|
#[inline(never)]
|
|
#[no_mangle]
|
|
pub fn panicking_external_fn(a: u32) -> u32 {
|
|
a * a
|
|
}
|