/*---------------------- wcpncpy ----------------------*/
- // This is a wchar_t equivalent to strncpy. We don't
- // have wchar_t available here, but in the GNU C Library
- // wchar_t is always 32 bits wide.
+ // This is a wchar_t equivalent to strncpy. We don't
+ // have wchar_t available here, but in the GNU C Library
+ // wchar_t is always 32 bits wide.
#define WCPNCPY(soname, fnname) \
Int* VG_REPLACE_FUNCTION_EZU(20500,soname,fnname) \
*dst++ = 0; \
} \
\
- return dst_orig + (src - src_orig); \
+ return dst_orig + (src - src_orig); \
}
#if defined(VGO_linux) || defined(VGO_freebsd) || defined(VGO_solaris)