2003-06-18 09:56:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file unlink.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
2003-07-28 22:37:28 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2003-06-18 09:56:10 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-06-18 09:56:10 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2000-09-26 13:54:57 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
#include "lyxlib.h"
|
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
int lyx::support::unlink(std::string const & pathname)
|
2000-09-26 13:54:57 +00:00
|
|
|
|
{
|
|
|
|
|
return ::unlink(pathname.c_str());
|
|
|
|
|
}
|