]> git.lyx.org Git - lyx.git/blobdiff - src/support/unlink.C
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / unlink.C
index ef3b52033269429a3aaab2e34f59789c42133739..e3ca60afe100f903f5c3561378b10d6e9ee9f430 100644 (file)
@@ -1,10 +1,20 @@
+/**
+ * \file unlink.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 <unistd.h>
 
 #include "lyxlib.h"
 
-int lyx::unlink(string const & pathname)
+int lyx::support::unlink(std::string const & pathname)
 {
        return ::unlink(pathname.c_str());
 }