aboutsummaryrefslogtreecommitdiff
path: root/fpconv.h
diff options
context:
space:
mode:
Diffstat (limited to 'fpconv.h')
-rw-r--r--fpconv.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/fpconv.h b/fpconv.h
index ea875c0..ac2f2c4 100644
--- a/fpconv.h
+++ b/fpconv.h
@@ -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
9extern void fpconv_init(); 9#ifdef USE_INTERNAL_DTOA
10static inline void fpconv_init()
11{
12 /* Do nothing - not required */
13}
14#else
15extern inline void fpconv_init();
16#endif
17
10extern int fpconv_g_fmt(char*, double, int); 18extern int fpconv_g_fmt(char*, double, int);
11extern double fpconv_strtod(const char*, char**); 19extern double fpconv_strtod(const char*, char**);
12 20