summaryrefslogtreecommitdiff
path: root/src/wchar/wcstol.c
blob: 5d4a605d63b83f5757d35478524a353351ec6993 (plain)
1
2
3
4
5
6
7
8
9
10
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)
*/