mirror of
https://github.com/exaloop/codon.git
synced 2025-06-03 15:03:52 +08:00
Add nextafter to C stubs
This commit is contained in:
parent
a59d3139d4
commit
1fcd2f296b
@ -238,6 +238,11 @@ def pow(a: float, b: float) -> float:
|
|||||||
def round(a: float) -> float:
|
def round(a: float) -> float:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@pure
|
||||||
|
@C
|
||||||
|
def nextafter(a: float, b: float) -> float:
|
||||||
|
pass
|
||||||
|
|
||||||
@pure
|
@pure
|
||||||
@C
|
@C
|
||||||
def acos(a: float) -> float:
|
def acos(a: float) -> float:
|
||||||
@ -433,6 +438,11 @@ def powf(a: float32, b: float32) -> float32:
|
|||||||
def roundf(a: float32) -> float32:
|
def roundf(a: float32) -> float32:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@pure
|
||||||
|
@C
|
||||||
|
def nextafterf(a: float32, b: float32) -> float32:
|
||||||
|
pass
|
||||||
|
|
||||||
@pure
|
@pure
|
||||||
@C
|
@C
|
||||||
def acosf(a: float32) -> float32:
|
def acosf(a: float32) -> float32:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user