Commit 1ac16331 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

msvcrt: Fix wrong msvcr90 in comments.

parent 6f79f3a2
......@@ -472,7 +472,7 @@ MSVCRT_size_t CDECL MSVCRT_strnlen(const char *s, MSVCRT_size_t maxlen)
}
/*********************************************************************
* _strtoi64_l (MSVCR90.@)
* _strtoi64_l (MSVCRT.@)
*
* FIXME: locale parameter is ignored
*/
......@@ -544,7 +544,7 @@ __int64 CDECL MSVCRT_strtoi64_l(const char *nptr, char **endptr, int base, MSVCR
}
/*********************************************************************
* _strtoi64 (MSVCR90.@)
* _strtoi64 (MSVCRT.@)
*/
__int64 CDECL MSVCRT_strtoi64(const char *nptr, char **endptr, int base)
{
......@@ -552,7 +552,7 @@ __int64 CDECL MSVCRT_strtoi64(const char *nptr, char **endptr, int base)
}
/*********************************************************************
* _strtoui64_l (MSVCR90.@)
* _strtoui64_l (MSVCRT.@)
*
* FIXME: locale parameter is ignored
*/
......@@ -618,7 +618,7 @@ unsigned __int64 CDECL MSVCRT_strtoui64_l(const char *nptr, char **endptr, int b
}
/*********************************************************************
* _strtoui64 (MSVCR90.@)
* _strtoui64 (MSVCRT.@)
*/
unsigned __int64 CDECL MSVCRT_strtoui64(const char *nptr, char **endptr, int base)
{
......
......@@ -1486,7 +1486,7 @@ INT CDECL MSVCRT_wcscat_s(MSVCRT_wchar_t* dst, MSVCRT_size_t elem, const MSVCRT_
}
/*********************************************************************
* _wctoi64_l (MSVCR90.@)
* _wctoi64_l (MSVCRT.@)
*
* FIXME: locale parameter is ignored
*/
......@@ -1559,7 +1559,7 @@ __int64 CDECL MSVCRT__wcstoi64_l(const MSVCRT_wchar_t *nptr,
}
/*********************************************************************
* _wcstoi64 (MSVCR90.@)
* _wcstoi64 (MSVCRT.@)
*/
__int64 CDECL MSVCRT__wcstoi64(const MSVCRT_wchar_t *nptr,
MSVCRT_wchar_t **endptr, int base)
......@@ -1568,7 +1568,7 @@ __int64 CDECL MSVCRT__wcstoi64(const MSVCRT_wchar_t *nptr,
}
/*********************************************************************
* _wcstoui64_l (MSVCR90.@)
* _wcstoui64_l (MSVCRT.@)
*
* FIXME: locale parameter is ignored
*/
......@@ -1635,7 +1635,7 @@ unsigned __int64 CDECL MSVCRT__wcstoui64_l(const MSVCRT_wchar_t *nptr,
}
/*********************************************************************
* _wcstoui64 (MSVCR90.@)
* _wcstoui64 (MSVCRT.@)
*/
unsigned __int64 CDECL MSVCRT__wcstoui64(const MSVCRT_wchar_t *nptr,
MSVCRT_wchar_t **endptr, int base)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment