Add nextafter to C stubs

pull/396/head
A. R. Shajii 2023-06-01 11:08:46 -04:00
parent a59d3139d4
commit 1fcd2f296b
1 changed files with 10 additions and 0 deletions

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: