msvcp90: Fix the mbstowcs_s macro return value.

This commit is contained in:
Alexandre Julliard 2014-04-28 15:34:01 +02:00
parent 47ed5655c5
commit 91f2b04625
1 changed files with 1 additions and 1 deletions

View File

@ -528,6 +528,6 @@ typedef struct {
#if _MSVCP_VER < 80
#define memcpy_s( dst, size, src, count ) (memcpy( (dst), (src), (count) ), 0)
#define memmove_s( dst, size, src, count ) (memmove( (dst), (src), (count) ), 0)
#define mbstowcs_s( ret, wcs, size, mbs, count ) (mbstowcs( (wcs), (mbs), (count) ))
#define mbstowcs_s( ret, wcs, size, mbs, count ) (mbstowcs( (wcs), (mbs), (count) ), 0)
#define hypotf( x, y ) ((float)hypot( (double)(x), (double)(y) ))
#endif