1271294Sngie// TR1 stdio.h -*- C++ -*-
2271294Sngie
3271294Sngie// Copyright (C) 2006 Free Software Foundation, Inc.
4271294Sngie//
5271294Sngie// This file is part of the GNU ISO C++ Library.  This library is free
6271294Sngie// software; you can redistribute it and/or modify it under the
7271294Sngie// terms of the GNU General Public License as published by the
8271294Sngie// Free Software Foundation; either version 2, or (at your option)
9271294Sngie// any later version.
10271294Sngie
11271294Sngie// This library is distributed in the hope that it will be useful,
12271294Sngie// but WITHOUT ANY WARRANTY; without even the implied warranty of
13271294Sngie// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14271294Sngie// GNU General Public License for more details.
15271294Sngie
16271294Sngie// You should have received a copy of the GNU General Public License along
17271294Sngie// with this library; see the file COPYING.  If not, write to the Free
18271294Sngie// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19271294Sngie// USA.
20271294Sngie
21271294Sngie// As a special exception, you may use this file as part of a free software
22271294Sngie// library without restriction.  Specifically, if other files instantiate
23271294Sngie// templates or use macros or inline functions from this file, or you compile
24271294Sngie// this file and link it with other files to produce an executable, this
25271294Sngie// file does not by itself cause the resulting executable to be covered by
26271294Sngie// the GNU General Public License.  This exception does not however
27271294Sngie// invalidate any other reasons why the executable file might be covered by
28271294Sngie// the GNU General Public License.
29
30/** @file tr1/stdio.h
31 *  This is a TR1 C++ Library header.
32 */
33
34#ifndef _TR1_STDIO_H
35#define _TR1_STDIO_H 1
36
37#include <tr1/cstdio>
38
39#endif
40