diff options
author | kristerw <kristerw@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-24 18:35:45 +0000 |
---|---|---|
committer | kristerw <kristerw@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-24 18:35:45 +0000 |
commit | b503c1a2d07a83b87c3d344d845ceb3a4eacd5a7 (patch) | |
tree | 198911fb1922f9f9eee060bc9c3ca96b58e95957 /gcc/intl.c | |
parent | 3670c51dfe5b75666de76454dd55944799dc90b5 (diff) | |
download | gcc-b503c1a2d07a83b87c3d344d845ceb3a4eacd5a7.tar.gz |
2003-04-24 Krister Walfridsson <cato@df.lth.se>
* configure.in: Check whether mbstowcs works.
* configure, config.in: Regenerate.
* intl.c: Use HAVE_WORKING_MBSTOWCS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66045 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/intl.c')
-rw-r--r-- | gcc/intl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/intl.c b/gcc/intl.c index 5a885bfec5d..3bda5cef7de 100644 --- a/gcc/intl.c +++ b/gcc/intl.c @@ -45,7 +45,7 @@ gcc_init_libintl () (void) textdomain ("gcc"); } -#if defined HAVE_WCHAR_H && defined HAVE_MBSTOWCS && defined HAVE_WCSWIDTH +#if defined HAVE_WCHAR_H && defined HAVE_WORKING_MBSTOWCS && defined HAVE_WCSWIDTH #include <wchar.h> /* Returns the width in columns of MSGSTR, which came from gettext. |