mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
[CRT] add #ifdef for easier syncing
svn path=/trunk/; revision=72634
This commit is contained in:
parent
a9a1a8f8bd
commit
f5f84ed231
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue