diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-02-08 15:56:34 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-02-08 15:56:34 +0000 |
commit | 92d79350743d6f8d52bf78f866d9ffe69da70d02 (patch) | |
tree | 0dd020d4d83ced76000d7d65369ed7ad7bd82cc2 /src/mesa/main/imports.h | |
parent | b8e3eb95d079aaec8b1c4c5a7e67c612af0848f6 (diff) |
replace _mesa_strtof() with _mesa_strtod()
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 405b4990b4..8ebc982172 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -1,4 +1,4 @@ -/* $Id: imports.h,v 1.11 2003/01/14 03:05:38 brianp Exp $ */ +/* $Id: imports.h,v 1.12 2003/02/08 15:56:34 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -173,8 +173,8 @@ _mesa_strdup( const char *s ); extern int _mesa_atoi( const char *s ); -extern float -_mesa_strtof( const char *s, char **end ); +extern double +_mesa_strtod( const char *s, char **end ); extern int _mesa_sprintf( char *str, const char *fmt, ... ); |