mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 04:04:44 +01:00
10 lines
263 B
Zig
10 lines
263 B
Zig
const symbol = @import("../compiler_rt.zig").symbol;
|
|
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
|
|
|
|
comptime {
|
|
symbol(&__floatunsihf, "__floatunsihf");
|
|
}
|
|
|
|
pub fn __floatunsihf(a: u32) callconv(.c) f16 {
|
|
return floatFromInt(f16, a);
|
|
}
|