#include #include #include "support/lyxlib.h" bool lyx::rename(char const * from, char const * to) { return ::rename(from, to) != -1; } bool lyx::rename(string const & from, string const & to) { return ::rename(from.c_str(), to.c_str()) != -1; }