blob: 69b046c41aa0de6579f2d4808122378041945a40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* -------------------------------------------
Copyright ZKA Web Services Co.
------------------------------------------- */
#pragma once
extern "C" int exit(int code);
/// @brief Standard C++ namespace
namespace std
{
inline int exit(int code)
{
return exit(code);
}
} // namespace std
|