diff options
Diffstat (limited to 'src/wchar/wcstoul.c')
| -rw-r--r-- | src/wchar/wcstoul.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wchar/wcstoul.c b/src/wchar/wcstoul.c new file mode 100644 index 00000000..8fcaeb8e --- /dev/null +++ b/src/wchar/wcstoul.c @@ -0,0 +1,11 @@ +#include <wchar.h> + +unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base) +{ + (void)nptr; (void)endptr; (void)base; + return 0UL; +} + +/* +STDC(199409) +*/ |
