mariadb/plugin/handler_socket/libhsclient/fatal.hpp
Michael Widenius 2c7d6f12ee Added HandlerSocket plugin
- Fixed compiler errors
- Modified Makefiles to be part of plugin directory
- Some minor changes in database.cpp to use the new MariaDB handler interface
2011-02-20 15:22:10 +02:00

22 lines
305 B
C++

// vim:sw=2:ai
/*
* Copyright (C) 2010 DeNA Co.,Ltd.. All rights reserved.
* See COPYRIGHT.txt for details.
*/
#ifndef DENA_FATAL_HPP
#define DENA_FATAL_HPP
#include <string>
namespace dena {
void fatal_exit(const std::string& message);
void fatal_abort(const std::string& message);
};
#endif