master
1const common = @import("./common.zig");
2const mulc3 = @import("./mulc3.zig");
3
4pub const panic = common.panic;
5
6comptime {
7 if (@import("builtin").zig_backend != .stage2_c) {
8 @export(&__mulhc3, .{ .name = "__mulhc3", .linkage = common.linkage, .visibility = common.visibility });
9 }
10}
11
12pub fn __mulhc3(a: f16, b: f16, c: f16, d: f16) callconv(.c) mulc3.Complex(f16) {
13 return mulc3.mulc3(f16, a, b, c, d);
14}