You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnav/src/test_override.cc

15 lines
174 B
C++

#include "config.h"
#include <time.h>
time_t time(time_t *loc)
{
time_t retval = 1370546000;
if (loc != NULL) {
*loc = retval;
}
return retval;
}