diff --git a/lib/std/special/c.zig b/lib/std/special/c.zig index be5ee18aa665c1fa95be3f2448f0db1a2a567152..9a246f75ed7d696f2e4a2531a73ad4a6c5f83a37 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,