2005-12-19 00:56:05 +00:00
|
|
|
// Underlying io library details -*- C++ -*-
|
2000-11-01 21:38:32 +00:00
|
|
|
|
2010-07-27 10:36:50 +00:00
|
|
|
// Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010
|
2005-12-19 00:56:05 +00:00
|
|
|
// Free Software Foundation, Inc.
|
2000-11-01 21:38:32 +00:00
|
|
|
//
|
|
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
|
|
// software; you can redistribute it and/or modify it under the
|
|
|
|
// terms of the GNU General Public License as published by the
|
2009-04-09 17:00:19 +02:00
|
|
|
// Free Software Foundation; either version 3, or (at your option)
|
2000-11-01 21:38:32 +00:00
|
|
|
// any later version.
|
|
|
|
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
2009-04-09 17:00:19 +02:00
|
|
|
// Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
// permissions described in the GCC Runtime Library Exception, version
|
|
|
|
// 3.1, as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License and
|
|
|
|
// a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
2000-11-01 21:38:32 +00:00
|
|
|
|
2010-12-19 09:21:16 +00:00
|
|
|
/** @file bits/c++io.h
|
2006-12-05 23:24:07 +00:00
|
|
|
* This is an internal header file, included by other library headers.
|
2010-12-19 09:21:16 +00:00
|
|
|
* Do not attempt to use it directly. @headername{ios}
|
2006-12-05 23:24:07 +00:00
|
|
|
*/
|
|
|
|
|
2000-11-01 21:38:32 +00:00
|
|
|
// c_io_stdio.h - Defines for using "C" stdio.h
|
|
|
|
|
2007-02-02 14:49:52 +00:00
|
|
|
#ifndef _GLIBCXX_CXX_IO_H
|
|
|
|
#define _GLIBCXX_CXX_IO_H 1
|
2000-11-01 21:38:32 +00:00
|
|
|
|
2001-06-09 06:49:13 +00:00
|
|
|
#include <cstdio>
|
2001-06-08 03:53:35 +00:00
|
|
|
#include <bits/gthr.h>
|
2000-11-01 21:38:32 +00:00
|
|
|
|
2005-12-19 00:56:05 +00:00
|
|
|
_GLIBCXX_BEGIN_NAMESPACE(std)
|
|
|
|
|
2001-06-08 03:53:35 +00:00
|
|
|
typedef __gthread_mutex_t __c_lock;
|
2000-11-01 21:38:32 +00:00
|
|
|
|
2003-07-04 07:14:54 +00:00
|
|
|
// for basic_file.h
|
2002-04-16 00:45:36 +00:00
|
|
|
typedef FILE __c_file;
|
2000-11-01 21:38:32 +00:00
|
|
|
|
2005-12-19 00:56:05 +00:00
|
|
|
_GLIBCXX_END_NAMESPACE
|
2000-11-01 21:38:32 +00:00
|
|
|
|
2003-07-04 07:14:54 +00:00
|
|
|
#endif
|