msvcrt: Fix the strtol/strtoul definitions.

This commit is contained in:
Alexandre Julliard 2009-09-01 22:34:50 +02:00
parent 84153c09cb
commit 835928720b
1 changed files with 2 additions and 2 deletions

View File

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