lyx_mirror/src/support/unlink.C

11 lines
144 B
C++
Raw Normal View History

#include <config.h>
#include <unistd.h>
#include "lyxlib.h"
int lyx::unlink(string const & pathname)
{
return ::unlink(pathname.c_str());
}