diff options
Diffstat (limited to 'fpconv.h')
-rw-r--r-- | fpconv.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -6,7 +6,15 @@ | |||
6 | * -1.7976931348623e+308 */ | 6 | * -1.7976931348623e+308 */ |
7 | # define FPCONV_G_FMT_BUFSIZE 32 | 7 | # define FPCONV_G_FMT_BUFSIZE 32 |
8 | 8 | ||
9 | extern void fpconv_init(); | 9 | #ifdef USE_INTERNAL_DTOA |
10 | static inline void fpconv_init() | ||
11 | { | ||
12 | /* Do nothing - not required */ | ||
13 | } | ||
14 | #else | ||
15 | extern inline void fpconv_init(); | ||
16 | #endif | ||
17 | |||
10 | extern int fpconv_g_fmt(char*, double, int); | 18 | extern int fpconv_g_fmt(char*, double, int); |
11 | extern double fpconv_strtod(const char*, char**); | 19 | extern double fpconv_strtod(const char*, char**); |
12 | 20 | ||