1 #include "igraph_error.h"
2 
3 #include "defs.hh"
4 
5 /*
6   Copyright (c) 2003-2021 Tommi Junttila
7   Released under the GNU Lesser General Public License version 3.
8 
9   This file is part of bliss.
10 
11   bliss is free software: you can redistribute it and/or modify
12   it under the terms of the GNU Lesser General Public License as published by
13   the Free Software Foundation, version 3 of the License.
14 
15   bliss is distributed in the hope that it will be useful,
16   but WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18   GNU Lesser General Public License for more details.
19 
20   You should have received a copy of the GNU Lesser General Public License
21   along with bliss.  If not, see <http://www.gnu.org/licenses/>.
22 */
23 
24 namespace bliss {
25 
26 void
fatal_error(const char * reason)27 fatal_error(const char* reason)
28 {
29   IGRAPH_FATAL(reason);
30 }
31 
32 }
33