tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
exit.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_CSTDLIB_EXIT_HPP
4#define TETL_CSTDLIB_EXIT_HPP
5
6#if not defined(EXIT_SUCCESS)
8 #define EXIT_SUCCESS 0
9#endif
10
11#if not defined(EXIT_FAILURE)
13 #define EXIT_FAILURE 1
14#endif
15
16#endif // TETL_CSTDLIB_EXIT_HPP