]> git.lyx.org Git - lyx.git/blob - src/support/rename.C
A small lyxlib.h cleanup
[lyx.git] / src / support / rename.C
1 #include <config.h>
2
3 #include <cstdio>
4
5 #include "support/lyxlib.h"
6
7 bool lyx::rename(string const & from, string const & to)
8 {
9         return ::rename(from.c_str(), to.c_str()) != -1;
10 }