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 // FreeBSD wants warning clean system headers: 22 // { dg-options "-Wall -Wsystem-headers" { target *-*-freebsd* } } 23 24 // 17.4.1.2 Headers 25 26 27 // "C++" headers 28 #include <algorithm> 29 #include <bitset> 30 #include <complex> 31 #include <deque> 32 #include <exception> 33 #include <fstream> 34 #include <functional> 35 #include <iomanip> 36 #include <ios> 37 #include <iosfwd> 38 #include <iostream> 39 #include <istream> 40 #include <iterator> 41 #include <limits> 42 #include <list> 43 #include <locale> 44 #include <map> 45 #include <memory> 46 #include <new> 47 #include <numeric> 48 #include <ostream> 49 #include <queue> 50 #include <set> 51 #include <sstream> 52 #include <stack> 53 #include <stdexcept> 54 #include <streambuf> 55 #include <string> 56 #include <typeinfo> 57 #include <utility> 58 #include <valarray> 59 #include <vector> 60 61 // "C" headers 62 #include <cassert> 63 #include <cctype> 64 #include <cerrno> 65 #include <cfloat> 66 #include <ciso646> 67 #include <climits> 68 #include <clocale> 69 #include <cmath> 70 #include <csetjmp> 71 #include <csignal> 72 #include <cstdarg> 73 #include <cstddef> 74 #include <cstdio> 75 #include <cstdlib> 76 #include <cstring> 77 #include <ctime> 78 79 // "C" headers that might not work if wchar_t support is disabled. 80 #include <bits/c++config.h> 81 #if defined(_GLIBCPP_USE_WCHAR_T) 82 #include <cwchar> 83 #include <cwctype> 84 #endif 85 main()86int main() { return 0; } 87