powf(3m) stub

Tony Kimball alk@pobox.com
Fri Jun 22 01:14:00 GMT 2001


Index: libstdc++-v3/libmath/stubs.c
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/libmath/stubs.c,v
retrieving revision 1.1
diff -u -r1.1 stubs.c
--- stubs.c	2001/06/22 03:43:48	1.1
+++ stubs.c	2001/06/22 08:13:10
@@ -72,9 +72,9 @@
 
 #ifndef _GLIBCPP_HAVE_POWF
 extern float
-powf(float x)
+powf(float x, float y)
 {
-  return (float) pow(x);
+  return (float) pow(x,y);
 }
 #endif
 



More information about the Libstdc++ mailing list