svn commit: trunk/uClibc/libm

vapier at uclibc.org vapier at uclibc.org
Sun Jan 29 15:22:55 UTC 2006


Author: vapier
Date: 2006-01-29 07:22:54 -0800 (Sun, 29 Jan 2006)
New Revision: 13663

Log:
rename exp to _exp for sake of shadow warnings

Modified:
   trunk/uClibc/libm/float_wrappers.c


Changeset:
Modified: trunk/uClibc/libm/float_wrappers.c
===================================================================
--- trunk/uClibc/libm/float_wrappers.c	2006-01-29 15:17:59 UTC (rev 13662)
+++ trunk/uClibc/libm/float_wrappers.c	2006-01-29 15:22:54 UTC (rev 13663)
@@ -294,9 +294,9 @@
 
 #ifdef L_frexpf
 libm_hidden_proto(frexp)
-float frexpf (float x, int *exp)
+float frexpf (float x, int *_exp)
 {
-	return (float) frexp( (double)x, exp );
+	return (float) frexp( (double)x, _exp );
 }
 #endif
 
@@ -321,9 +321,9 @@
 
 #ifdef L_ldexpf
 libm_hidden_proto(ldexp)
-float ldexpf (float x, int exp)
+float ldexpf (float x, int _exp)
 {
-	return (float) ldexp( (double)x, exp );
+	return (float) ldexp( (double)x, _exp );
 }
 #endif
 
@@ -505,18 +505,18 @@
 
 #ifdef L_scalblnf
 libm_hidden_proto(scalbln)
-float scalblnf (float x, long exp)
+float scalblnf (float x, long _exp)
 {
-	return (float) scalbln( (double)x, exp );
+	return (float) scalbln( (double)x, _exp );
 }
 #endif
 
 
 #ifdef L_scalbnf
 libm_hidden_proto(scalbn)
-float scalbnf (float x, int exp)
+float scalbnf (float x, int _exp)
 {
-	return (float) scalbn( (double)x, exp );
+	return (float) scalbn( (double)x, _exp );
 }
 #endif
 




More information about the uClibc-cvs mailing list