diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/system.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/system.h b/src/system.h index 833e162..2737e9f 100644 --- a/src/system.h +++ b/src/system.h @@ -61,6 +61,14 @@ char *strchrnul(const char *, int); char *strsignal(int); #endif +#ifndef HAVE_STRTOD +static inline double strtod(const char *nptr, char **endptr) +{ + *endptr = (char *)nptr; + return 0; +} +#endif + #ifndef HAVE_STRTOIMAX #define strtoimax strtoll #endif |