diff options
Diffstat (limited to 'memory/atof.c')
-rw-r--r-- | memory/atof.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/memory/atof.c b/memory/atof.c new file mode 100644 index 0000000..c7cdc7e --- /dev/null +++ b/memory/atof.c @@ -0,0 +1,3 @@ +#include "memory.h" + +double atof(char const *string) { return _strtod_wrap(string, NULL); } |