mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
11 lines
132 B
C++
11 lines
132 B
C++
|
#include <config.h>
|
||
|
|
||
|
#include <unistd.h>
|
||
|
|
||
|
#include "lyxlib.h"
|
||
|
|
||
|
int lyx::rmdir(string const & dir)
|
||
|
{
|
||
|
return ::rmdir(dir.c_str());
|
||
|
}
|