os/ossrv/ossrv_pub/boost_apis/boost/filesystem/cerrno.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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