source: trunk/src/gcc/libstdc++-v3/testsuite/17_intro/headers.cc@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 1.9 KB
Line 
1// 1999-05-12 bkoz
2
3// Copyright (C) 1999 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
17// with this library; see the file COPYING. If not, write to the Free
18// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19// USA.
20
21// 17.4.1.2 Headers
22
23
24// "C++" headers
25#include <algorithm>
26#include <bitset>
27#include <complex>
28#include <deque>
29#include <exception>
30#include <fstream>
31#include <functional>
32#include <iomanip>
33#include <ios>
34#include <iosfwd>
35#include <iostream>
36#include <istream>
37#include <iterator>
38#include <limits>
39#include <list>
40#include <locale>
41#include <map>
42#include <memory>
43#include <new>
44#include <numeric>
45#include <ostream>
46#include <queue>
47#include <set>
48#include <sstream>
49#include <stack>
50#include <stdexcept>
51#include <streambuf>
52#include <string>
53#include <typeinfo>
54#include <utility>
55#include <valarray>
56#include <vector>
57
58// "C" headers
59#include <cassert>
60#include <cctype>
61#include <cerrno>
62#include <cfloat>
63#include <ciso646>
64#include <climits>
65#include <clocale>
66#include <cmath>
67#include <csetjmp>
68#include <csignal>
69#include <cstdarg>
70#include <cstddef>
71#include <cstdio>
72#include <cstdlib>
73#include <cstring>
74#include <ctime>
75
76// "C" headers that might not work if wchar_t support is disabled.
77#include <bits/c++config.h>
78#if _GLIBCPP_USE_WCHAR_T
79 #include <cwchar>
80 #include <cwctype>
81#endif
82
83int main() { return 0; }
Note: See TracBrowser for help on using the repository browser.