[CRT] add #ifdef for easier syncing

svn path=/trunk/; revision=72634
This commit is contained in:
Christoph von Wittich 2016-09-09 17:40:53 +00:00
parent a9a1a8f8bd
commit f5f84ed231

View file

@ -18,6 +18,9 @@ __int64 CDECL _strtoi64_l(const char *nptr, char **endptr, int base, _locale_t l
TRACE("(%s %p %d %p)\n", debugstr_a(nptr), endptr, base, locale);
#endif
#ifndef __REACTOS__
if (!MSVCRT_CHECK_PMT(nptr != NULL)) return 0;
#endif
if (!MSVCRT_CHECK_PMT(base == 0 || base >= 2)) return 0;
if (!MSVCRT_CHECK_PMT(base <= 36)) return 0;