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