Files
config/test/boost_has_unistd_h.ipp

24 lines
519 B
Plaintext
Raw Normal View History

// (C) Copyright John Maddock 2001. Permission to copy, use, modify, sell and
// distribute this software is granted provided this copyright notice appears
// in all copies. This software is provided "as is" without express or implied
// warranty, and with no claim as to its suitability for any purpose.
// MACRO: BOOST_HAS_UNISTD_H
// TITLE: <unistd.h>
// DESCRIPTION: The Platform provides <unistd.h>.
#include <unistd.h>
namespace boost_has_unistd_h{
int test()
{
return 0;
}
}