aboutsummaryrefslogtreecommitdiffstats
path: root/memory/wrap/wcstod.c
diff options
context:
space:
mode:
Diffstat (limited to 'memory/wrap/wcstod.c')
-rw-r--r--memory/wrap/wcstod.c7
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);
+}