1
0
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:
A. R. Shajii 2023-06-01 11:08:46 -04:00
parent a59d3139d4
commit 1fcd2f296b

View File

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