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