From 610a691e1c34b806e89b67e8fa4fc00571c30f3f Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 17 Aug 2005 19:17:40 +0000 Subject: Marked some #ifdef ZLE_UNICODE_SUPPORT lines (and their #endif lines) with /**/ so that they would get copied to the .epro file. --- Src/string.c | 2 ++ Src/utils.c | 8 ++++++++ 2 files changed, 10 insertions(+) (limited to 'Src') 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 */ diff --git a/Src/utils.c b/Src/utils.c index 96f18497f..8a887fa37 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -243,6 +243,7 @@ nicechar(int c) return buf; } +/**/ #ifdef ZLE_UNICODE_SUPPORT /**/ mod_export wchar_t * @@ -280,6 +281,7 @@ wcs_nicechar(wint_t c) *s = 0; return buf; } +/**/ #endif /* ZLE_UNICODE_SUPPORT */ @@ -2493,6 +2495,7 @@ zarrdup(char **s) return y; } +/**/ #ifdef ZLE_UNICODE_SUPPORT /**/ mod_export wchar_t ** @@ -2506,6 +2509,7 @@ wcs_zarrdup(wchar_t **s) return y; } +/**/ #endif /* ZLE_UNICODE_SUPPORT */ /**/ @@ -3106,6 +3110,7 @@ zputs(char const *s, FILE *stream) return 0; } +/**/ #ifdef ZLE_UNICODE_SUPPORT /**/ mod_export int @@ -3127,6 +3132,7 @@ wcs_zputs(wchar_t const *s, FILE *stream) } return 0; } +/**/ #endif /* ZLE_UNICODE_SUPPORT */ /* Create a visibly-represented duplicate of a string. */ @@ -3215,6 +3221,7 @@ niceztrlen(char const *s) return l; } +/**/ #ifdef ZLE_UNICODE_SUPPORT /**/ mod_export size_t @@ -3236,6 +3243,7 @@ wcs_nicewidth(wchar_t const *s) } return l; } +/**/ #endif /* ZLE_UNICODE_SUPPORT */ /* check for special characters in the string */ -- cgit 1.4.1