Thrill  0.1
file.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  * foxxll/io/file.cpp
3  *
4  * Part of FOXXLL. See http://foxxll.org
5  *
6  * Copyright (C) 2013 Timo Bingmann <[email protected]>
7  *
8  * Distributed under the Boost Software License, Version 1.0.
9  * (See accompanying file LICENSE_1_0.txt or copy at
10  * http://www.boost.org/LICENSE_1_0.txt)
11  **************************************************************************/
12 
13 #include <foxxll/io/file.hpp>
15 
16 namespace foxxll {
17 
18 int file::unlink(const char* path)
19 {
20  return ::unlink(path);
21 }
22 
23 } // namespace foxxll
24 
25 /******************************************************************************/
26 
27 /**************************************************************************/
FOXXLL library namespace
static int unlink(const char *path)
unlink path from filesystem
Definition: file.cpp:18