mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
Dummy implementation that doesn't do what we want
This commit is contained in:
parent
b031eb0e54
commit
ff2c3d7945
10 changed files with 79 additions and 2 deletions
|
@ -21,3 +21,9 @@ pub fn acos(num: f64) callconv(.C) f64 {
|
|||
pub fn asin(num: f64) callconv(.C) f64 {
|
||||
return @call(.{ .modifier = always_inline }, math.asin, .{num});
|
||||
}
|
||||
|
||||
/// TODO: Obviously, this should not be an alias for arcsin(x);
|
||||
/// fix me!
|
||||
pub fn bytesToU16C(num: f64) callconv(.C) f64 {
|
||||
return @call(.{ .modifier = always_inline }, math.asin, .{num});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue