lyx_mirror/src/support/lyxtime.C

23 lines
358 B
C++
Raw Normal View History

/**
* \file lyxtime.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "support/lyxtime.h"
namespace lyx {
time_type current_time()
{
return time(0);
}
} // namespace lyx