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// SPDX-FileCopyrightText: Copyright (C) 2019 Tobias Hienzsch
3
4#ifndef TETL_CSTDLIB_EXIT_HPP
5#define TETL_CSTDLIB_EXIT_HPP
6
7#if not defined(EXIT_SUCCESS)
8 /// \brief Successful execution of a program.
9 #define EXIT_SUCCESS 0
10#endif
11
12#if not defined(EXIT_FAILURE)
13 /// \brief Unsuccessful execution of a program.
14 #define EXIT_FAILURE 1
15#endif
16
17#endif // TETL_CSTDLIB_EXIT_HPP