mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
d6665cba42
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1041 a592a061-630c-0410-9148-cb99ea01b6c8
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());
|
|
}
|