freestanding libc: add missing export of sqrt, sqrtf

this was a typo in a previous commit, didn't mean to omit these.
This commit is contained in:
Andrew Kelley
2022-03-03 00:52:39 -08:00
parent 0a4f58490f
commit 9aa220ebb5

View File

@@ -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,