Commit ae6560b5 authored by scoder's avatar scoder

Merge pull request #396 from anntzer/signbit

Add signbit to math.pxd.
parents 8e41d0c6 eb763ce4
......@@ -95,8 +95,9 @@ cdef extern from "math.h" nogil:
double scalbn(double x, int n)
double nan(const char*)
bint isfinite(long double)
bint isnormal(long double)
bint isnan(long double)
bint isinf(long double)
bint isnan(long double)
bint isnormal(long double)
bint signbit(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