[go: up one dir, main page]

Menu

[b9e44f]: / lib / io / file.cpp  Maximize  Restore  History

Download this file

24 lines (19 with data), 623 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/***************************************************************************
* lib/io/file.cpp
*
* Part of the STXXL. See http://stxxl.sourceforge.net
*
* Copyright (C) 2013 Timo Bingmann <tb@panthema.net>
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
**************************************************************************/
#include <stxxl/bits/io/file.h>
#include "ufs_platform.h"
STXXL_BEGIN_NAMESPACE
int file::unlink(const char* path)
{
return ::unlink(path);
}
STXXL_END_NAMESPACE