diff options
Diffstat (limited to 'include/cwchar')
-rw-r--r-- | include/cwchar | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/cwchar b/include/cwchar index 8e788fc764e1..eed6de18f1a3 100644 --- a/include/cwchar +++ b/include/cwchar @@ -151,9 +151,13 @@ using ::wcstof; using ::wcstold; #endif // _MSC_VER using ::wcstol; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::wcstoll; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::wcstoul; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::wcstoull; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::wcscpy; using ::wcsncpy; using ::wcscat; |