summaryrefslogtreecommitdiff
path: root/src/wchar/wcstod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcstod.c')
-rw-r--r--src/wchar/wcstod.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wchar/wcstod.c b/src/wchar/wcstod.c
new file mode 100644
index 00000000..d8eeef74
--- /dev/null
+++ b/src/wchar/wcstod.c
@@ -0,0 +1,11 @@
+#include <wchar.h>
+
+double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr)
+{
+ (void)nptr; (void)endptr;
+ return 0.0;
+}
+
+/*
+STDC(199409)
+*/