]> git.lyx.org Git - lyx.git/blobdiff - src/support/mkdir.C
zlib stuff
[lyx.git] / src / support / mkdir.C
index faae48c280edae9e7b0e2f12a791a20054f584fa..e45d46728e4d1575d304355655d016406737e6bc 100644 (file)
@@ -1,3 +1,13 @@
+/**
+ * \file mkdir.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
 #include <config.h>
 
 #include <sys/stat.h>
@@ -9,7 +19,7 @@
 
 #include "lyxlib.h"
 
-int lyx::mkdir(string const & pathname, unsigned long int mode)
+int lyx::support::mkdir(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));