Home
last modified time | relevance | path

Searched refs:mod_time (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/games/rogue/
H A Dsave.c177 struct rogue_time saved_time, mod_time; in restore() local
240 md_gfmt(fname, &mod_time); /* get file modification time */ in restore()
242 if (has_been_touched(&saved_time, &mod_time)) { in restore()
396 const struct rogue_time *mod_time) in has_been_touched() argument
398 if (saved_time->year < mod_time->year) { in has_been_touched()
400 } else if (saved_time->year > mod_time->year) { in has_been_touched()
403 if (saved_time->month < mod_time->month) { in has_been_touched()
405 } else if (saved_time->month > mod_time->month) { in has_been_touched()
408 if (saved_time->day < mod_time->day) { in has_been_touched()
410 } else if (saved_time->day > mod_time->day) { in has_been_touched()
[all …]
/netbsd-src/external/bsd/ntp/dist/scripts/build/
H A DupdateBEDate18 my $mod_time;
24 $mod_time = (stat ($i))[9];
25 $stamp = localtime($mod_time);
27 localtime($mod_time);
49 utime(time, $mod_time, "$i.new") || die "touch $i.new failed: $!";