[Numpy-svn] r3933 - trunk/numpy/core/src

numpy-svn at scipy.org numpy-svn at scipy.org
Sat Jul 28 09:16:16 EDT 2007


Author: pearu
Date: 2007-07-28 08:16:12 -0500 (Sat, 28 Jul 2007)
New Revision: 3933

Modified:
   trunk/numpy/core/src/umathmodule.c.src
Log:
Fixed typos.

Modified: trunk/numpy/core/src/umathmodule.c.src
===================================================================
--- trunk/numpy/core/src/umathmodule.c.src	2007-07-28 13:13:33 UTC (rev 3932)
+++ trunk/numpy/core/src/umathmodule.c.src	2007-07-28 13:16:12 UTC (rev 3933)
@@ -49,13 +49,13 @@
 }
 #endif
 #ifndef HAVE_FREXPF
-static float frexpf(float x, int * i);
+static float frexpf(float x, int * i)
 {
        return (float)frexp((double)(x), i);
 }
 #endif
 #ifndef HAVE_LDEXPF
-static float ldexpf(float x, int i);
+static float ldexpf(float x, int i)
 {
        return (float)ldexp((double)(x), i);
 }




More information about the Numpy-svn mailing list