stdc++.h revision 169691
1139743Simp// C++ includes used for precompiling -*- C++ -*-
243412Snewton
343412Snewton// Copyright (C) 2003 Free Software Foundation, Inc.
443412Snewton//
543412Snewton// This file is part of the GNU ISO C++ Library.  This library is free
643412Snewton// software; you can redistribute it and/or modify it under the
743412Snewton// terms of the GNU General Public License as published by the
843412Snewton// Free Software Foundation; either version 2, or (at your option)
943412Snewton// any later version.
1043412Snewton
1143412Snewton// This library is distributed in the hope that it will be useful,
1243412Snewton// but WITHOUT ANY WARRANTY; without even the implied warranty of
1343412Snewton// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1443412Snewton// GNU General Public License for more details.
1543412Snewton
1643412Snewton// You should have received a copy of the GNU General Public License along
1743412Snewton// with this library; see the file COPYING.  If not, write to the Free
1843412Snewton// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
1943412Snewton// USA.
2043412Snewton
2143412Snewton// As a special exception, you may use this file as part of a free software
2243412Snewton// library without restriction.  Specifically, if other files instantiate
2343412Snewton// templates or use macros or inline functions from this file, or you compile
2443412Snewton// this file and link it with other files to produce an executable, this
2543412Snewton// file does not by itself cause the resulting executable to be covered by
2643412Snewton// the GNU General Public License.  This exception does not however
2749267Snewton// invalidate any other reasons why the executable file might be covered by
2850477Speter// the GNU General Public License.
2943412Snewton
3043412Snewton/** @file stdc++.h
3143412Snewton *  This is an implementation file for a precompiled header.
3243412Snewton */
3343412Snewton
3443412Snewton// 17.4.1.2 Headers
3543412Snewton
3643412Snewton// C
3743412Snewton#include <cassert>
3843412Snewton#include <cctype>
3943412Snewton#include <cerrno>
4043412Snewton#include <cfloat>
4143412Snewton#include <ciso646>
42#include <climits>
43#include <clocale>
44#include <cmath>
45#include <csetjmp>
46#include <csignal>
47#include <cstdarg>
48#include <cstddef>
49#include <cstdio>
50#include <cstdlib>
51#include <cstring>
52#include <ctime>
53
54// C++
55#include <algorithm>
56#include <bitset>
57#include <complex>
58#include <deque>
59#include <exception>
60#include <fstream>
61#include <functional>
62#include <iomanip>
63#include <ios>
64#include <iosfwd>
65#include <iostream>
66#include <istream>
67#include <iterator>
68#include <limits>
69#include <list>
70#include <locale>
71#include <map>
72#include <memory>
73#include <new>
74#include <numeric>
75#include <ostream>
76#include <queue>
77#include <set>
78#include <sstream>
79#include <stack>
80#include <stdexcept>
81#include <streambuf>
82#include <string>
83#include <typeinfo>
84#include <utility>
85#include <valarray>
86#include <vector>
87