diff options
Diffstat (limited to 'contrib/tsearch2/ts_locale.h')
-rw-r--r-- | contrib/tsearch2/ts_locale.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/contrib/tsearch2/ts_locale.h b/contrib/tsearch2/ts_locale.h index 4935e70c6a..905eb94af0 100644 --- a/contrib/tsearch2/ts_locale.h +++ b/contrib/tsearch2/ts_locale.h @@ -22,17 +22,15 @@ #ifdef WIN32 -size_t wchar2char( char *to, const wchar_t *from, size_t len ); -size_t char2wchar( wchar_t *to, const char *from, size_t len ); - -#else /* WIN32 */ +size_t wchar2char(char *to, const wchar_t *from, size_t len); +size_t char2wchar(wchar_t *to, const char *from, size_t len); +#else /* WIN32 */ /* correct mbstowcs */ #define char2wchar mbstowcs #define wchar2char wcstombs +#endif /* WIN32 */ +#endif /* defined(HAVE_WCSTOMBS) && + * defined(HAVE_TOWLOWER) */ -#endif /* WIN32 */ - -#endif /* defined(HAVE_WCSTOMBS) && defined(HAVE_TOWLOWER) */ - -#endif /* __TSLOCALE_H__ */ +#endif /* __TSLOCALE_H__ */ |