2022-10-09 01:13:16 +01:00
|
|
|
const common = @import("./common.zig");
|
|
|
|
const mulc3 = @import("./mulc3.zig");
|
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
2022-12-07 12:54:29 +00:00
|
|
|
if (@import("builtin").zig_backend != .stage2_c) {
|
2023-06-17 23:33:35 +01:00
|
|
|
if (common.want_ppc_abi)
|
2024-08-26 03:49:36 +01:00
|
|
|
@export(&__multc3, .{ .name = "__mulkc3", .linkage = common.linkage, .visibility = common.visibility });
|
|
|
|
@export(&__multc3, .{ .name = "__multc3", .linkage = common.linkage, .visibility = common.visibility });
|
2022-12-07 12:54:29 +00:00
|
|
|
}
|
2022-10-09 01:13:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn __multc3(a: f128, b: f128, c: f128, d: f128) callconv(.C) mulc3.Complex(f128) {
|
|
|
|
return mulc3.mulc3(f128, a, b, c, d);
|
|
|
|
}
|