1
2// vim:sw=2:ai
3
4/*
5 * Copyright (C) 2010 DeNA Co.,Ltd.. All rights reserved.
6 * See COPYRIGHT.txt for details.
7 */
8
9#ifndef DENA_FATAL_HPP
10#define DENA_FATAL_HPP
11
12#include <string>
13
14namespace dena {
15
16void fatal_abort(const std::string& message);
17
18};
19
20#endif
21
22