mirror of https://github.com/exaloop/codon.git
Add nextafter to C stubs
parent
a59d3139d4
commit
1fcd2f296b
|
@ -238,6 +238,11 @@ def pow(a: float, b: float) -> float:
|
|||
def round(a: float) -> float:
|
||||
pass
|
||||
|
||||
@pure
|
||||
@C
|
||||
def nextafter(a: float, b: float) -> float:
|
||||
pass
|
||||
|
||||
@pure
|
||||
@C
|
||||
def acos(a: float) -> float:
|
||||
|
@ -433,6 +438,11 @@ def powf(a: float32, b: float32) -> float32:
|
|||
def roundf(a: float32) -> float32:
|
||||
pass
|
||||
|
||||
@pure
|
||||
@C
|
||||
def nextafterf(a: float32, b: float32) -> float32:
|
||||
pass
|
||||
|
||||
@pure
|
||||
@C
|
||||
def acosf(a: float32) -> float32:
|
||||
|
|
Loading…
Reference in New Issue