Commit eb763ce4 authored by Antony Lee's avatar Antony Lee

Add signbit to math.pxd.

Also reorder a few imports to alphabetical order.
parent bb0dec2f
......@@ -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