1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_PROCESS_POSIX_SHELL_PATH_HPP
- #define BOOST_PROCESS_POSIX_SHELL_PATH_HPP
- #include <boost/process/detail/config.hpp>
- #include <boost/system/error_code.hpp>
- #include <boost/process/filesystem.hpp>
- namespace boost { namespace process { namespace detail { namespace posix {
- inline boost::process::filesystem::path shell_path()
- {
- return "/bin/sh";
- }
- inline boost::process::filesystem::path shell_path(std::error_code &ec)
- {
- ec.clear();
- return "/bin/sh";
- }
- }}}}
- #endif
|