]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/18_support/quick_exit/quick_exit.cc
linkage.m4 (GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE): New.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 18_support / quick_exit / quick_exit.cc
CommitLineData
cc999d03
JM
1// 2013-02-11 Jason Merrill
2
3// Copyright (C) 2013 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 3, 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 COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
19
20// 18.5 - Start and termination
21
22#include <cstdlib>
23
24void handler()
25{
26 std::_Exit(0);
27}
28
29void wrong_handler()
30{
31 std::abort();
32}
33
34int main()
35{
36 std::at_quick_exit (handler);
37 std::atexit (wrong_handler);
38 std::quick_exit (1);
39}