Commit 83592872 authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Fix the strtol/strtoul definitions.

parent 84153c09
......@@ -255,7 +255,7 @@ int CDECL __STRINGTOLD( MSVCRT__LDOUBLE *value, char **endptr, const char *str,
/******************************************************************
* strtol (MSVCRT.@)
*/
long int MSVCRT_strtol(const char* nptr, char** end, int base)
MSVCRT_long CDECL MSVCRT_strtol(const char* nptr, char** end, int base)
{
/* wrapper to forward libc error code to msvcrt's error codes */
long ret;
......@@ -289,7 +289,7 @@ long int MSVCRT_strtol(const char* nptr, char** end, int base)
/******************************************************************
* strtoul (MSVCRT.@)
*/
unsigned long int MSVCRT_strtoul(const char* nptr, char** end, int base)
MSVCRT_ulong CDECL MSVCRT_strtoul(const char* nptr, char** end, int base)
{
/* wrapper to forward libc error code to msvcrt's error codes */
unsigned long ret;
......
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