100db7afdSDavid E. O'Brien // -*- C++ -*- forwarding header.
200db7afdSDavid E. O'Brien 
3ffeaf689SAlexander Kabaev // Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc.
400db7afdSDavid E. O'Brien //
500db7afdSDavid E. O'Brien // This file is part of the GNU ISO C++ Library.  This library is free
600db7afdSDavid E. O'Brien // software; you can redistribute it and/or modify it under the
700db7afdSDavid E. O'Brien // terms of the GNU General Public License as published by the
800db7afdSDavid E. O'Brien // Free Software Foundation; either version 2, or (at your option)
900db7afdSDavid E. O'Brien // any later version.
1000db7afdSDavid E. O'Brien 
1100db7afdSDavid E. O'Brien // This library is distributed in the hope that it will be useful,
1200db7afdSDavid E. O'Brien // but WITHOUT ANY WARRANTY; without even the implied warranty of
1300db7afdSDavid E. O'Brien // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1400db7afdSDavid E. O'Brien // GNU General Public License for more details.
1500db7afdSDavid E. O'Brien 
1600db7afdSDavid E. O'Brien // You should have received a copy of the GNU General Public License along
1700db7afdSDavid E. O'Brien // 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,
1900db7afdSDavid E. O'Brien // USA.
2000db7afdSDavid E. O'Brien 
2100db7afdSDavid E. O'Brien // As a special exception, you may use this file as part of a free software
2200db7afdSDavid E. O'Brien // library without restriction.  Specifically, if other files instantiate
2300db7afdSDavid E. O'Brien // templates or use macros or inline functions from this file, or you compile
2400db7afdSDavid E. O'Brien // this file and link it with other files to produce an executable, this
2500db7afdSDavid E. O'Brien // file does not by itself cause the resulting executable to be covered by
2600db7afdSDavid E. O'Brien // the GNU General Public License.  This exception does not however
2700db7afdSDavid E. O'Brien // invalidate any other reasons why the executable file might be covered by
2800db7afdSDavid E. O'Brien // the GNU General Public License.
2900db7afdSDavid E. O'Brien 
3000db7afdSDavid E. O'Brien //
3100db7afdSDavid E. O'Brien // ISO C++ 14882: 27.8.2  C Library files
3200db7afdSDavid E. O'Brien //
3300db7afdSDavid E. O'Brien 
34ffeaf689SAlexander Kabaev #ifndef _GLIBCXX_CSTDIO
35ffeaf689SAlexander Kabaev #define _GLIBCXX_CSTDIO 1
3600db7afdSDavid E. O'Brien 
3700db7afdSDavid E. O'Brien #pragma GCC system_header
3800db7afdSDavid E. O'Brien 
3900db7afdSDavid E. O'Brien #include_next <stdio.h>
4000db7afdSDavid E. O'Brien 
41ca6500fcSAlexander Kabaev // Get rid of those macros defined in <stdio.h> in lieu of real functions.
42ca6500fcSAlexander Kabaev #undef clearerr
43ca6500fcSAlexander Kabaev #undef fclose
44ca6500fcSAlexander Kabaev #undef feof
45ca6500fcSAlexander Kabaev #undef ferror
46ca6500fcSAlexander Kabaev #undef fflush
47ca6500fcSAlexander Kabaev #undef fgetc
48ca6500fcSAlexander Kabaev #undef fgetpos
49ca6500fcSAlexander Kabaev #undef fgets
50ca6500fcSAlexander Kabaev #undef fopen
51ca6500fcSAlexander Kabaev #undef fprintf
52ca6500fcSAlexander Kabaev #undef fputc
53ca6500fcSAlexander Kabaev #undef fputs
54ca6500fcSAlexander Kabaev #undef fread
55ca6500fcSAlexander Kabaev #undef freopen
56ca6500fcSAlexander Kabaev #undef fscanf
57ca6500fcSAlexander Kabaev #undef fseek
58ca6500fcSAlexander Kabaev #undef fsetpos
59ca6500fcSAlexander Kabaev #undef ftell
60ca6500fcSAlexander Kabaev #undef fwrite
61ca6500fcSAlexander Kabaev #undef getc
62ca6500fcSAlexander Kabaev #undef getchar
63ca6500fcSAlexander Kabaev #undef gets
64ca6500fcSAlexander Kabaev #undef perror
65ca6500fcSAlexander Kabaev #undef printf
66ca6500fcSAlexander Kabaev #undef putc
67ca6500fcSAlexander Kabaev #undef putchar
68ca6500fcSAlexander Kabaev #undef puts
69ca6500fcSAlexander Kabaev #undef remove
70ca6500fcSAlexander Kabaev #undef rename
71ca6500fcSAlexander Kabaev #undef rewind
72ca6500fcSAlexander Kabaev #undef scanf
73ca6500fcSAlexander Kabaev #undef setbuf
74ca6500fcSAlexander Kabaev #undef setvbuf
75ca6500fcSAlexander Kabaev #undef sprintf
76ca6500fcSAlexander Kabaev #undef sscanf
77ca6500fcSAlexander Kabaev #undef tmpfile
78ca6500fcSAlexander Kabaev #undef tmpnam
79ca6500fcSAlexander Kabaev #undef ungetc
80ca6500fcSAlexander Kabaev #undef vfprintf
81ca6500fcSAlexander Kabaev #undef vprintf
82ca6500fcSAlexander Kabaev #undef vsprintf
83ca6500fcSAlexander Kabaev 
8400db7afdSDavid E. O'Brien #endif
85