mirror of https://github.com/CGAL/cgal
119 lines
2.5 KiB
C
119 lines
2.5 KiB
C
// ======================================================================
|
|
//
|
|
// Copyright (c) 1998 The CGAL Consortium
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
//
|
|
// release :
|
|
// release_date :
|
|
//
|
|
// file : config/testfiles/CGAL_CFG_NO_STANDARD_HEADERS.C
|
|
// package : Configuration (1.16)
|
|
// source :
|
|
// revision : 1.11
|
|
// revision_date : 29 Mar 1998
|
|
// author(s) : various
|
|
//
|
|
// coordinator : Utrecht University
|
|
//
|
|
// ======================================================================
|
|
|
|
// CGAL_CFG_NO_STANDARD_HEADERS.C
|
|
// ---------------------------------------------------------------------
|
|
// A short test program to evaluate a C++ compiler / STL implementation
|
|
// whether it supports the new standard headers (i.e. without the .h suffix)
|
|
// This program is used by cgal_configure.
|
|
// The following documentation will be pasted in the generated configfile.
|
|
// ---------------------------------------------------------------------
|
|
|
|
//| The flag CGAL_CFG_NO_STANDARD_HEADERS is set, if a compiler does not
|
|
//| support the new standard headers (i.e. without the .h suffix).
|
|
|
|
|
|
// headers taken from CD2
|
|
|
|
// Language support library:
|
|
#include <cstddef>
|
|
#include <limits>
|
|
#include <climits>
|
|
#include <cfloat>
|
|
#include <cstdlib>
|
|
#include <new>
|
|
#include <typeinfo>
|
|
#include <exception>
|
|
#include <cstdarg>
|
|
#include <csetjmp>
|
|
#include <ctime>
|
|
#include <csignal>
|
|
#include <cstdlib>
|
|
|
|
// Diagnostics library:
|
|
#include <cassert>
|
|
#include <cerrno>
|
|
#include <stdexcept>
|
|
|
|
// General utilities library:
|
|
#include <utility>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <ctime>
|
|
|
|
// Strings library:
|
|
#include <string>
|
|
#include <cctype>
|
|
#include <cwctype>
|
|
#include <cstring>
|
|
#include <cwchar>
|
|
#include <cstdlib>
|
|
|
|
// Localization library:
|
|
#include <locale>
|
|
#include <clocale>
|
|
|
|
// Containers library:
|
|
#include <deque>
|
|
#include <list>
|
|
#include <queue>
|
|
#include <stack>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <set>
|
|
#include <bitset>
|
|
|
|
// Iterators library:
|
|
#include <iterator>
|
|
|
|
// Algorithms library:
|
|
#include <algorithm>
|
|
#include <cstdlib>
|
|
|
|
// Numerics library:
|
|
#include <complex>
|
|
#include <valarray>
|
|
#include <numeric>
|
|
#include <cmath>
|
|
#include <cstdlib>
|
|
|
|
// Input/output library:
|
|
#include <iosfwd>
|
|
#include <iostream>
|
|
#include <ios>
|
|
#include <streambuf>
|
|
#include <istream>
|
|
#include <ostream>
|
|
#include <iomanip>
|
|
#include <sstream>
|
|
#include <cstdlib>
|
|
#include <fstream>
|
|
#include <cstdio>
|
|
#include <cwchar>
|
|
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// EOF //
|
|
|