From 8c8828272a019186039887c55576ccebdf369e12 Mon Sep 17 00:00:00 2001 From: Yves Arrouye Date: Fri, 7 Apr 2000 01:24:48 +0000 Subject: [PATCH] ICU-347 Define the uprv_wcs* as macros that don't take arguments, so that one can take a pointer to one of these. X-SVN-Rev: 1092 --- icu4c/source/common/cstring.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/icu4c/source/common/cstring.h b/icu4c/source/common/cstring.h index f85a67f951d..8137cb9805d 100644 --- a/icu4c/source/common/cstring.h +++ b/icu4c/source/common/cstring.h @@ -62,9 +62,9 @@ /* The following are not available on all systems, defined in wchar.h or string.h . */ #if U_HAVE_WCHAR_H -# define uprv_wcscat(dst, src) wcscat(dst, src) -# define uprv_wcscpy(dst, src) wcscpy(dst, src) -# define uprv_wcslen(src) wcslen(src) +# define uprv_wcscat wcscat +# define uprv_wcscpy wcscpy +# define uprv_wcslen wcslen #else U_CAPI wchar_t *uprv_wcscat(wchar_t *dst, const wchar_t *src); U_CAPI wchar_t *uprv_wcscpy(wchar_t *dst, const wchar_t *src);