1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef BOOST_CSTDLIB_HPP
- #define BOOST_CSTDLIB_HPP
- #include <cstdlib>
- namespace boost
- {
-
-
-
-
-
-
-
-
-
-
-
-
- const int exit_success = EXIT_SUCCESS;
- const int exit_failure = EXIT_FAILURE;
- const int exit_exception_failure = 200;
- const int exit_test_failure = 201;
-
- }
- #endif
|