]> git.lyx.org Git - lyx.git/blob - boost/boost/filesystem/cerrno.hpp
* lib/doc/Makefile.am:
[lyx.git] / boost / boost / filesystem / cerrno.hpp
1 //  Boost Filesystem cerrno.hpp header  --------------------------------------//
2
3 //  Copyright Beman Dawes 2005.
4 //  Use, modification, and distribution is subject to the Boost Software
5 //  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 //  http://www.boost.org/LICENSE_1_0.txt)
7
8 //  See library home page at http://www.boost.org/libs/filesystem
9
10 #ifndef BOOST_FILESYSTEM_CERRNO_HPP
11 #define BOOST_FILESYSTEM_CERRNO_HPP
12
13 #include <cerrno>
14
15 #if defined __BORLANDC__
16 #define ENOSYS       9997
17 #endif
18
19 #define EBADHANDLE   9998  // bad handle
20 #define EOTHER       9999  // Other error not translatable
21                            // to a POSIX errno value
22
23 #endif // include guard