diff options
Diffstat (limited to 'memory/wrap/strtod.c')
-rw-r--r-- | memory/wrap/strtod.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/memory/wrap/strtod.c b/memory/wrap/strtod.c new file mode 100644 index 0000000..19d4a0e --- /dev/null +++ b/memory/wrap/strtod.c @@ -0,0 +1,7 @@ +#include "memory.h" +#include <stdlib.h> + +double _strtod_wrap(char const *restrict string, char **restrict invalid) +{ + return strtod(string, invalid); +} |