]> git.lyx.org Git - lyx.git/blob - src/support/unlink.C
Make it clearer where include files are comming from.
[lyx.git] / src / support / unlink.C
1 /**
2  * \file unlink.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "support/lyxlib.h"
14
15 #include <unistd.h>
16
17 int lyx::support::unlink(std::string const & pathname)
18 {
19         return ::unlink(pathname.c_str());
20 }