Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/bmake/
H A Ddir.c419 struct stat sys_st; in cached_stats() local
434 rc = (useLstat ? lstat : stat)(pathname, &sys_st); in cached_stats()
438 if (sys_st.st_mtime == 0) in cached_stats()
439 sys_st.st_mtime = 1; /* avoid confusion with missing file */ in cached_stats()
446 cst->cst_mtime = sys_st.st_mtime; in cached_stats()
447 cst->cst_mode = sys_st.st_mode; in cached_stats()
451 Targ_FmtTime(sys_st.st_mtime), pathname); in cached_stats()