1// LAF OS Library
2// Copyright (C) 2012-2014 David Capello
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef OS_ERROR_H_INCLUDED
8#define OS_ERROR_H_INCLUDED
9#pragma once
10
11namespace os {
12
13 void error_message(const char* msg);
14
15} // namespace os
16
17#endif
18