mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-30 17:50:58 +01:00
* 20753: use ZS_memmove instead of memmove.
This commit is contained in:
parent
85e0b5f377
commit
efab849310
3 changed files with 8 additions and 2 deletions
|
|
@ -727,6 +727,7 @@ typedef wchar_t *ZLE_STRING_T;
|
|||
#define ZLETAB L'\t'
|
||||
#define ZLENULSTR L""
|
||||
#define ZS_memcpy wmemcpy
|
||||
#define ZS_memmove wmemmove
|
||||
#define ZC_icntrl iswcntrl
|
||||
#else
|
||||
typedef int ZLE_CHAR_T;
|
||||
|
|
@ -738,5 +739,6 @@ typedef unsigned char *ZLE_STRING_T;
|
|||
#define ZLETAB '\t'
|
||||
#define ZLENULSTR ""
|
||||
#define ZS_memcpy memcpy
|
||||
#define ZS_memmove memmove
|
||||
#define ZC_icntrl icntrl
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue