]> git.lyx.org Git - lyx.git/blobdiff - src/support/mkdir.C
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / mkdir.C
index 8119d3db1d6f146bf7fcc485da91935333994393..546bbf8e654f6a3338affdba977dbb8af5ccb2e3 100644 (file)
 #include <fcntl.h>
 #include <unistd.h>
 
-#include "support/std_string.h"
-
 #include "lyxlib.h"
 
-int lyx::support::mkdir(string const & pathname, unsigned long int mode)
+int lyx::support::mkdir(std::string const & pathname, unsigned long int mode)
 {
        // FIXME: why don't we have mode_t in lyx::mkdir prototype ??
        return ::mkdir(pathname.c_str(), mode_t(mode));