about summary refs log tree commit diff
path: root/Src/string.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2005-08-17 19:17:40 +0000
committerWayne Davison <wayned@users.sourceforge.net>2005-08-17 19:17:40 +0000
commit610a691e1c34b806e89b67e8fa4fc00571c30f3f (patch)
tree64dfc53eab2aa9082f2bdd7c2bc5d98180c650f9 /Src/string.c
parent307c27e16fdc6e63551af7846d765e95749a8cd3 (diff)
downloadzsh-610a691e1c34b806e89b67e8fa4fc00571c30f3f.tar.gz
zsh-610a691e1c34b806e89b67e8fa4fc00571c30f3f.tar.xz
zsh-610a691e1c34b806e89b67e8fa4fc00571c30f3f.zip
Marked some #ifdef ZLE_UNICODE_SUPPORT lines (and their #endif lines)
with /**/ so that they would get copied to the .epro file.
Diffstat (limited to 'Src/string.c')
-rw-r--r--Src/string.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/string.c b/Src/string.c
index 0a7f200ab..b22c1bf66 100644
--- a/Src/string.c
+++ b/Src/string.c
@@ -54,6 +54,7 @@ ztrdup(const char *s)
     return t;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export wchar_t *
@@ -67,6 +68,7 @@ wcs_ztrdup(const wchar_t *s)
     wcscpy(t, s);
     return t;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */