diff options
author | Marcin BaczyĆski <[email protected]> | 2010-03-13 14:26:45 +0100 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-03-15 08:38:24 -0700 |
commit | 346298c7658f2ec8b105e5e53101637af232724f (patch) | |
tree | 986b382e8be6eba02eb2fa213fad1efd1782fa8b /src/mesa/main/imports.h | |
parent | 63af29bfbe265318bcf5be69e420de361b900321 (diff) |
Replace _mesa_strtod with _mesa_strtof.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index fb4a00eca7b..d28f4ad125d 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -575,8 +575,8 @@ _mesa_getenv( const char *var ); extern char * _mesa_strdup( const char *s ); -extern double -_mesa_strtod( const char *s, char **end ); +extern float +_mesa_strtof( const char *s, char **end ); extern unsigned int _mesa_str_checksum(const char *str); |