Commit 9aa220ebb5

Andrew Kelley <andrew@ziglang.org>
2022-03-03 09:52:39
freestanding libc: add missing export of sqrt, sqrtf
this was a typo in a previous commit, didn't mean to omit these.
1 parent 0a4f584
Changed files (1)
lib
std
special
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,