mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
2c7d6f12ee
- Fixed compiler errors - Modified Makefiles to be part of plugin directory - Some minor changes in database.cpp to use the new MariaDB handler interface
22 lines
305 B
C++
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
|
|
|