]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/headers/cwchar/macros.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / headers / cwchar / macros.cc
CommitLineData
2baa360f 1// { dg-do compile }
2
fbd26352 3// Copyright (C) 2007-2019 Free Software Foundation, Inc.
2baa360f 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
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
2baa360f 9// any later version.
8856cc8b 10
2baa360f 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.
8856cc8b 15
2baa360f 16// You should have received a copy of the GNU General Public License along
6bc9506f 17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
2baa360f 19
8856cc8b 20#include <cwchar>
2baa360f 21
f9f3b518 22#ifdef _GLIBCXX_USE_WCHAR_T
4f8570c7 23
8856cc8b 24namespace gnu
2baa360f 25{
8856cc8b 26#ifndef NULL
27 #error "NULL_must_be_a_macro"
28#endif
2baa360f 29
8856cc8b 30#ifndef WCHAR_MAX
31 #error "WCHAR_MAX_must_be_a_macro"
32#endif
2baa360f 33
8856cc8b 34#ifndef WCHAR_MIN
35 #error "WCHAR_MIN_must_be_a_macro"
36#endif
2baa360f 37
8856cc8b 38#ifndef WEOF
39 #error "WEOF_must_be_a_macro"
40#endif
2baa360f 41}
4f8570c7 42
43#endif