mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 12:26:59 +00:00
11 lines
144 B
C++
11 lines
144 B
C++
|
#include <config.h>
|
||
|
|
||
|
#include <unistd.h>
|
||
|
|
||
|
#include "lyxlib.h"
|
||
|
|
||
|
int lyx::unlink(string const & pathname)
|
||
|
{
|
||
|
return ::unlink(pathname.c_str());
|
||
|
}
|