Commit daa54c4b by Loren J. Rittle Committed by Gabriel Dos Reis

c_io_stdio.h: Don't define __c_wfile_type when _GLIBCPP_USE_WCHAR_T is not defined.

        * config/c_io_stdio.h: Don't define __c_wfile_type
        when _GLIBCPP_USE_WCHAR_T is not defined.

From-SVN: r37453
parent fe8ca71f
2000-11-13 Loren J. Rittle <ljrittle@acm.org>
* config/c_io_stdio.h: Don't define __c_wfile_type
when _GLIBCPP_USE_WCHAR_T is not defined.
2000-11-13 Phil Edwards <pme@sources.redhat.com> 2000-11-13 Phil Edwards <pme@sources.redhat.com>
* acinclude.m4 (GLIBCPP_CHECK_TARGET): New macro, replacing * acinclude.m4 (GLIBCPP_CHECK_TARGET): New macro, replacing
......
...@@ -56,9 +56,9 @@ namespace std { ...@@ -56,9 +56,9 @@ namespace std {
#define _GLIBCPP_BASIC_FILE_ENCAPSULATION 1 #define _GLIBCPP_BASIC_FILE_ENCAPSULATION 1
typedef FILE __c_file_type; typedef FILE __c_file_type;
typedef _IO_wide_data __c_wfile_type;
#ifdef _GLIBCPP_USE_WCHAR_T #ifdef _GLIBCPP_USE_WCHAR_T
typedef _IO_wide_data __c_wfile_type;
extern "C" struct __c_libio_codecvt { }; extern "C" struct __c_libio_codecvt { };
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment