1169691Skan// C++ includes used for precompiling -*- C++ -*-
2169691Skan
3169691Skan// Copyright (C) 2003 Free Software Foundation, Inc.
4169691Skan//
5169691Skan// This file is part of the GNU ISO C++ Library.  This library is free
6169691Skan// software; you can redistribute it and/or modify it under the
7169691Skan// terms of the GNU General Public License as published by the
8169691Skan// Free Software Foundation; either version 2, or (at your option)
9169691Skan// any later version.
10169691Skan
11169691Skan// This library is distributed in the hope that it will be useful,
12169691Skan// but WITHOUT ANY WARRANTY; without even the implied warranty of
13169691Skan// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14169691Skan// GNU General Public License for more details.
15169691Skan
16169691Skan// You should have received a copy of the GNU General Public License along
17169691Skan// with this library; see the file COPYING.  If not, write to the Free
18169691Skan// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19169691Skan// USA.
20169691Skan
21169691Skan// As a special exception, you may use this file as part of a free software
22169691Skan// library without restriction.  Specifically, if other files instantiate
23169691Skan// templates or use macros or inline functions from this file, or you compile
24169691Skan// this file and link it with other files to produce an executable, this
25169691Skan// file does not by itself cause the resulting executable to be covered by
26169691Skan// the GNU General Public License.  This exception does not however
27169691Skan// invalidate any other reasons why the executable file might be covered by
28169691Skan// the GNU General Public License.
29169691Skan
30169691Skan/** @file stdc++.h
31169691Skan *  This is an implementation file for a precompiled header.
32169691Skan */
33169691Skan
34169691Skan// 17.4.1.2 Headers
35169691Skan
36169691Skan// C
37169691Skan#include <cassert>
38169691Skan#include <cctype>
39169691Skan#include <cerrno>
40169691Skan#include <cfloat>
41169691Skan#include <ciso646>
42169691Skan#include <climits>
43169691Skan#include <clocale>
44169691Skan#include <cmath>
45169691Skan#include <csetjmp>
46169691Skan#include <csignal>
47169691Skan#include <cstdarg>
48169691Skan#include <cstddef>
49169691Skan#include <cstdio>
50169691Skan#include <cstdlib>
51169691Skan#include <cstring>
52169691Skan#include <ctime>
53169691Skan
54169691Skan// C++
55169691Skan#include <algorithm>
56169691Skan#include <bitset>
57169691Skan#include <complex>
58169691Skan#include <deque>
59169691Skan#include <exception>
60169691Skan#include <fstream>
61169691Skan#include <functional>
62169691Skan#include <iomanip>
63169691Skan#include <ios>
64169691Skan#include <iosfwd>
65169691Skan#include <iostream>
66169691Skan#include <istream>
67169691Skan#include <iterator>
68169691Skan#include <limits>
69169691Skan#include <list>
70169691Skan#include <locale>
71169691Skan#include <map>
72169691Skan#include <memory>
73169691Skan#include <new>
74169691Skan#include <numeric>
75169691Skan#include <ostream>
76169691Skan#include <queue>
77169691Skan#include <set>
78169691Skan#include <sstream>
79169691Skan#include <stack>
80169691Skan#include <stdexcept>
81169691Skan#include <streambuf>
82169691Skan#include <string>
83169691Skan#include <typeinfo>
84169691Skan#include <utility>
85169691Skan#include <valarray>
86169691Skan#include <vector>
87