Commit 74c166d8 authored by Robert Bradshaw's avatar Robert Bradshaw

Some math.h fixes, c99 isX macros.

--HG--
extra : transplant_source : %A2%F5%D0%5C%3B%7E%E9%BC%A3s%29%BBr%D7%06N%BC%88%F4%BB
parent 70168c52
...@@ -84,8 +84,8 @@ cdef extern from "math.h" nogil: ...@@ -84,8 +84,8 @@ cdef extern from "math.h" nogil:
float erff(float) float erff(float)
long double erfl(long double) long double erfl(long double)
double erfc(double) double erfc(double)
double erfcf(double) float erfcf(float)
long double erfcl(double) long double erfcl(long double)
double fdim(double x, double y) double fdim(double x, double y)
double fma(double x, double y) double fma(double x, double y)
...@@ -94,4 +94,9 @@ cdef extern from "math.h" nogil: ...@@ -94,4 +94,9 @@ cdef extern from "math.h" nogil:
double scalbln(double x, long n) double scalbln(double x, long n)
double scalbn(double x, int n) double scalbn(double x, int n)
double nan(char*) # const char* double nan(const char*)
bint isfinite(long double)
bint isnormal(long double)
bint isnan(long double)
bint isinf(long double)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment