blob: e54272c0536a2a394860bb8a05fe453814a4ebed (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "memory.h"
#include <wchar.h>
long long _wcstoll_wrap(wchar_t const *restrict string,
wchar_t **restrict invalid, int base)
{
return wcstoll(string, invalid, base);
}
|