diff --git a/lib/std/special/c.zig b/lib/std/special/c.zig index be5ee18aa6..9a246f75ed 100644 --- a/lib/std/special/c.zig +++ b/lib/std/special/c.zig @@ -108,6 +108,9 @@ comptime { @export(fmax, .{ .name = "fmax", .linkage = .Strong }); @export(fmaxf, .{ .name = "fmaxf", .linkage = .Strong }); + + @export(sqrt, .{ .name = "sqrt", .linkage = .Strong }); + @export(sqrtf, .{ .name = "sqrtf", .linkage = .Strong }); } // Avoid dragging in the runtime safety mechanisms into this .o file,