Home
last modified time | relevance | path

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

/freebsd/contrib/bmake/
H A Ddir.c405 struct stat sys_st; in cached_stats() local
420 rc = (useLstat ? lstat : stat)(pathname, &sys_st); in cached_stats()
424 if (sys_st.st_mtime == 0) in cached_stats()
425 sys_st.st_mtime = 1; /* avoid confusion with missing file */ in cached_stats()
432 cst->cst_mtime = sys_st.st_mtime; in cached_stats()
433 cst->cst_mode = sys_st.st_mode; in cached_stats()
437 Targ_FmtTime(sys_st.st_mtime), pathname); in cached_stats()