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