*** empty log message ***

This commit is contained in:
Arvid Norberg
2005-08-23 09:59:56 +00:00
parent e930580f13
commit 84ddeacea0
6 changed files with 129 additions and 23 deletions

View File

@@ -30,10 +30,6 @@ POSSIBILITY OF SUCH DAMAGE.
*/
#include <boost/filesystem/operations.hpp>
#include "libtorrent/file.hpp"
#include <sstream>
#ifdef _WIN32
// windows part
#include "libtorrent/utf8.hpp"
@@ -56,8 +52,17 @@ typedef int mode_t;
#include <sys/types.h>
#include <errno.h>
#include <boost/static_assert.hpp>
// make sure the _FILE_OFFSET_BITS define worked
// on this platform
BOOST_STATIC_ASSERT(sizeof(lseek(0, 0, 0)) >= 8);
#endif
#include <boost/filesystem/operations.hpp>
#include "libtorrent/file.hpp"
#include <sstream>
#ifndef O_BINARY
#define O_BINARY 0
#endif