remove const from _mesa_strtof()
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 14 Jan 2003 03:05:38 +0000 (03:05 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 14 Jan 2003 03:05:38 +0000 (03:05 +0000)
src/mesa/main/imports.c
src/mesa/main/imports.h

index 4123545ee07566bb591fdb66a9974f64cab1f2cd..bb836dd832756096a03e2b843f1a01299e18af86 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: imports.c,v 1.28 2003/01/14 03:02:13 brianp Exp $ */
+/* $Id: imports.c,v 1.29 2003/01/14 03:05:38 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -379,12 +379,12 @@ _mesa_atoi(const char *s)
 
 
 float
-_mesa_strtof( const char *s, const char **end )
+_mesa_strtof( const char *s, char **end )
 {
 #if defined(XFree86LOADER) && defined(IN_MODULE)
    return xf86strtof(s, end);
 #else
-   return strtod(s, end);
+   return (float) strtod(s, end);
 #endif
 }
 
index 85834cbe78364a1cd739bf0150d8b2ded4c7369a..405b4990b49b36fc0ec4bd7f2d8475e7314b603a 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: imports.h,v 1.10 2003/01/14 03:00:54 brianp Exp $ */
+/* $Id: imports.h,v 1.11 2003/01/14 03:05:38 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -174,7 +174,7 @@ extern int
 _mesa_atoi( const char *s );
 
 extern float
-_mesa_strtof( const char *s, const char **end );
+_mesa_strtof( const char *s, char **end );
 
 extern int
 _mesa_sprintf( char *str, const char *fmt, ... );