]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/tr1/8_c_compatibility/cinttypes/functions.cc
Remove trailing whitespace from libstdc++-v3 files
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 8_c_compatibility / cinttypes / functions.cc
CommitLineData
52a64bd3
PC
1// { dg-do compile }
2
3// 2006-01-30 Paolo Carlini <pcarlini@suse.de>
4//
818ab71a 5// Copyright (C) 2006-2016 Free Software Foundation, Inc.
52a64bd3
PC
6//
7// This file is part of the GNU ISO C++ Library. This library is free
8// software; you can redistribute it and/or modify it under the
9// terms of the GNU General Public License as published by the
748086b7 10// Free Software Foundation; either version 3, or (at your option)
52a64bd3
PC
11// any later version.
12//
13// This library is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17//
18// You should have received a copy of the GNU General Public License along
748086b7
JJ
19// with this library; see the file COPYING3. If not see
20// <http://www.gnu.org/licenses/>.
52a64bd3
PC
21
22// 8.11 Header <cinttypes>
23
24#include <tr1/cinttypes>
25
26void test01()
27{
28#if _GLIBCXX_USE_C99_INTTYPES_TR1
29
30 std::tr1::intmax_t i = 0, numer = 0, denom = 0, base = 0;
31 const char* s = 0;
32 char** endptr = 0;
a834e097 33#if defined(_GLIBCXX_USE_WCHAR_T) && _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1
52a64bd3
PC
34 const wchar_t* ws = 0;
35 wchar_t** wendptr = 0;
f92ab29f 36#endif
52a64bd3
PC
37
38 std::tr1::intmax_t ret;
39 std::tr1::uintmax_t uret;
40 std::tr1::imaxdiv_t dret;
41
42 ret = std::tr1::imaxabs(i);
4f0de5dd 43 // ret = std::tr1::abs(i);
52a64bd3
PC
44
45 dret = std::tr1::imaxdiv(numer, denom);
4f0de5dd 46 // dret = std::tr1::div(numer, denom);
52a64bd3
PC
47
48 ret = std::tr1::strtoimax(s, endptr, base);
49 uret = std::tr1::strtoumax(s, endptr, base);
50
a834e097 51#if defined(_GLIBCXX_USE_WCHAR_T) && _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1
52a64bd3
PC
52 ret = std::tr1::wcstoimax(ws, wendptr, base);
53 uret = std::tr1::wcstoumax(ws, wendptr, base);
54#endif
55
567d4027
PC
56 ret = ret; // Suppress unused warnings.
57 dret = dret;
58 uret = uret;
59
52a64bd3
PC
60#endif
61}