mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
edbcab7c2d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1141 a592a061-630c-0410-9148-cb99ea01b6c8
16 lines
266 B
C
16 lines
266 B
C
#include <config.h>
|
|
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
|
|
#include "LString.h"
|
|
|
|
#include "lyxlib.h"
|
|
|
|
int lyx::mkdir(string const & pathname, unsigned long int mode)
|
|
{
|
|
return ::mkdir(pathname.c_str(), mode_t(mode));
|
|
}
|