Commit 226727b7 authored by Zackery Spytz's avatar Zackery Spytz Committed by Stefan Behnel

Add fpclassify() and FP_* constants to math.pxd

Closes #2514.
parent f80d0ae7
......@@ -104,3 +104,9 @@ cdef extern from "<math.h>" nogil:
bint isnan(long double)
bint isnormal(long double)
bint signbit(long double)
int fpclassify(long double)
const int FP_NAN
const int FP_INFINITE
const int FP_ZERO
const int FP_SUBNORMAL
const int FP_NORMAL
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