]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/17_intro/headers/c++2014/stdc++.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 17_intro / headers / c++2014 / stdc++.cc
CommitLineData
12d74f0d 1// FreeBSD wants warning clean system headers:
f12ddb62 2// { dg-options "-std=gnu++14" }
c3c2f973 3// { dg-additional-options "-Wall -Wsystem-headers" { target *-*-freebsd* *-*-dragonfly* } }
af13a7a6
BK
4// { dg-do compile }
5
8d9254fc 6// Copyright (C) 2015-2020 Free Software Foundation, Inc.
af13a7a6
BK
7//
8// This file is part of the GNU ISO C++ Library. This library is free
9// software; you can redistribute it and/or modify it under the
10// terms of the GNU General Public License as published by the
748086b7 11// Free Software Foundation; either version 3, or (at your option)
af13a7a6
BK
12// any later version.
13
14// This library is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18
19// You should have received a copy of the GNU General Public License along
748086b7
JJ
20// with this library; see the file COPYING3. If not see
21// <http://www.gnu.org/licenses/>.
af13a7a6
BK
22
23// 17.4.1.2 Headers
24
12d74f0d 25#include <bits/stdc++.h>
af13a7a6
BK
26
27// "C" compatibility headers
28#include <assert.h>
02537534 29#ifdef _GLIBCXX_HAVE_COMPLEX_H
af13a7a6 30#include <complex.h>
02537534 31#endif
af13a7a6
BK
32#include <ctype.h>
33#include <errno.h>
02537534 34#ifdef _GLIBCXX_HAVE_FENV_H
af13a7a6 35#include <fenv.h>
02537534 36#endif
af13a7a6 37#include <float.h>
02537534 38#ifdef _GLIBCXX_HAVE_INTTYPES_H
af13a7a6 39#include <inttypes.h>
02537534 40#endif
af13a7a6
BK
41#include <iso646.h>
42#include <limits.h>
43#include <locale.h>
44#include <math.h>
45#include <setjmp.h>
46#include <signal.h>
47#include <stdarg.h>
02537534 48#ifdef _GLIBCXX_HAVE_STDBOOL_H
af13a7a6 49#include <stdbool.h>
02537534 50#endif
af13a7a6 51#include <stddef.h>
02537534 52#ifdef _GLIBCXX_HAVE_STDINT_H
af13a7a6 53#include <stdint.h>
02537534 54#endif
af13a7a6
BK
55#include <stdio.h>
56#include <stdlib.h>
57#include <string.h>
02537534 58#ifdef _GLIBCXX_HAVE_TGMATH_H
af13a7a6 59#include <tgmath.h>
02537534 60#endif
af13a7a6 61#include <time.h>
20b5f0b3
ESR
62#if __has_include(<uchar.h>)
63#include <uchar.h>
64#endif
54bdca68 65#ifdef _GLIBCXX_HAVE_WCHAR_H
af13a7a6 66#include <wchar.h>
54bdca68
PC
67#endif
68#ifdef _GLIBCXX_HAVE_WCTYPE_H
af13a7a6 69#include <wctype.h>
54bdca68 70#endif