]> git.lyx.org Git - lyx.git/blob - src/support/rename.C
export patch from Dekel
[lyx.git] / src / support / rename.C
1 #include <config.h>
2
3 #include <stdio.h>
4
5 #include "support/lyxlib.h"
6
7 bool lyx::rename(char const * from, char const * to)
8 {
9         return ::rename(from, to) != -1;
10 }