1ca6500fcSAlexander Kabaev // -*- C++ -*- compatibility header. 2ca6500fcSAlexander Kabaev 3ca6500fcSAlexander Kabaev // Copyright (C) 2002 Free Software Foundation, Inc. 4ca6500fcSAlexander Kabaev // 5ca6500fcSAlexander Kabaev // This file is part of the GNU ISO C++ Library. This library is free 6ca6500fcSAlexander Kabaev // software; you can redistribute it and/or modify it under the 7ca6500fcSAlexander Kabaev // terms of the GNU General Public License as published by the 8ca6500fcSAlexander Kabaev // Free Software Foundation; either version 2, or (at your option) 9ca6500fcSAlexander Kabaev // any later version. 10ca6500fcSAlexander Kabaev 11ca6500fcSAlexander Kabaev // This library is distributed in the hope that it will be useful, 12ca6500fcSAlexander Kabaev // but WITHOUT ANY WARRANTY; without even the implied warranty of 13ca6500fcSAlexander Kabaev // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14ca6500fcSAlexander Kabaev // GNU General Public License for more details. 15ca6500fcSAlexander Kabaev 16ca6500fcSAlexander Kabaev // You should have received a copy of the GNU General Public License along 17ca6500fcSAlexander Kabaev // with this library; see the file COPYING. If not, write to the Free 18*f8a1b7d9SAlexander Kabaev // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 19ca6500fcSAlexander Kabaev // USA. 20ca6500fcSAlexander Kabaev 21ca6500fcSAlexander Kabaev // As a special exception, you may use this file as part of a free software 22ca6500fcSAlexander Kabaev // library without restriction. Specifically, if other files instantiate 23ca6500fcSAlexander Kabaev // templates or use macros or inline functions from this file, or you compile 24ca6500fcSAlexander Kabaev // this file and link it with other files to produce an executable, this 25ca6500fcSAlexander Kabaev // file does not by itself cause the resulting executable to be covered by 26ca6500fcSAlexander Kabaev // the GNU General Public License. This exception does not however 27ca6500fcSAlexander Kabaev // invalidate any other reasons why the executable file might be covered by 28ca6500fcSAlexander Kabaev // the GNU General Public License. 29ca6500fcSAlexander Kabaev 30ffeaf689SAlexander Kabaev #ifndef _GLIBCXX_STDIO_H 31ffeaf689SAlexander Kabaev #define _GLIBCXX_STDIO_H 1 32ca6500fcSAlexander Kabaev 33ca6500fcSAlexander Kabaev #include <cstdio> 34ca6500fcSAlexander Kabaev 35ca6500fcSAlexander Kabaev using std::FILE; 36ca6500fcSAlexander Kabaev using std::fpos_t; 37ca6500fcSAlexander Kabaev 38ca6500fcSAlexander Kabaev using std::remove; 39ca6500fcSAlexander Kabaev using std::rename; 40ca6500fcSAlexander Kabaev using std::tmpfile; 41ca6500fcSAlexander Kabaev using std::tmpnam; 42ca6500fcSAlexander Kabaev using std::fclose; 43ca6500fcSAlexander Kabaev using std::fflush; 44ca6500fcSAlexander Kabaev using std::fopen; 45ca6500fcSAlexander Kabaev using std::freopen; 46ca6500fcSAlexander Kabaev using std::setbuf; 47ca6500fcSAlexander Kabaev using std::setvbuf; 48ca6500fcSAlexander Kabaev using std::fprintf; 49ca6500fcSAlexander Kabaev using std::fscanf; 50ca6500fcSAlexander Kabaev using std::printf; 51ca6500fcSAlexander Kabaev using std::scanf; 52ca6500fcSAlexander Kabaev using std::snprintf; 53ca6500fcSAlexander Kabaev using std::sprintf; 54ca6500fcSAlexander Kabaev using std::sscanf; 55ca6500fcSAlexander Kabaev using std::vfprintf; 56ca6500fcSAlexander Kabaev using std::vfscanf; 57ca6500fcSAlexander Kabaev using std::vprintf; 58ca6500fcSAlexander Kabaev using std::vscanf; 59ca6500fcSAlexander Kabaev using std::vsnprintf; 60ca6500fcSAlexander Kabaev using std::vsprintf; 61ca6500fcSAlexander Kabaev using std::vsscanf; 62ca6500fcSAlexander Kabaev using std::fgetc; 63ca6500fcSAlexander Kabaev using std::fgets; 64ca6500fcSAlexander Kabaev using std::fputc; 65ca6500fcSAlexander Kabaev using std::fputs; 66ca6500fcSAlexander Kabaev using std::getc; 67ca6500fcSAlexander Kabaev using std::getchar; 68ca6500fcSAlexander Kabaev using std::gets; 69ca6500fcSAlexander Kabaev using std::putc; 70ca6500fcSAlexander Kabaev using std::putchar; 71ca6500fcSAlexander Kabaev using std::puts; 72ca6500fcSAlexander Kabaev using std::ungetc; 73ca6500fcSAlexander Kabaev using std::fread; 74ca6500fcSAlexander Kabaev using std::fwrite; 75ca6500fcSAlexander Kabaev using std::fgetpos; 76ca6500fcSAlexander Kabaev using std::fseek; 77ca6500fcSAlexander Kabaev using std::fsetpos; 78ca6500fcSAlexander Kabaev using std::ftell; 79ca6500fcSAlexander Kabaev using std::rewind; 80ca6500fcSAlexander Kabaev using std::clearerr; 81ca6500fcSAlexander Kabaev using std::feof; 82ca6500fcSAlexander Kabaev using std::ferror; 83ca6500fcSAlexander Kabaev using std::perror; 84ca6500fcSAlexander Kabaev 85ca6500fcSAlexander Kabaev #endif 86