Commit b06d1145 authored by Stefan Behnel's avatar Stefan Behnel

fix ticket 801: wrong declarations in math.pxd for frexp() and ldexp()

parent ff889025
......@@ -44,8 +44,8 @@ cdef extern from "math.h" nogil:
double lgamma(double x)
double tgamma(double x)
double frexp(double x, double* exponent)
double ldexp(double x, double exponent)
double frexp(double x, int* exponent)
double ldexp(double x, int exponent)
double modf(double x, double* iptr)
double fmod(double x, double y)
......
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