mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 16:54:52 +00:00
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:
parent
0a4f58490f
commit
9aa220ebb5
@ -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,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user