Initialize a fstatat cache *ST. Return ST for convenience. */
| 80 | |
| 81 | /* Initialize a fstatat cache *ST. Return ST for convenience. */ |
| 82 | static inline struct stat * |
| 83 | cache_stat_init (struct stat *st) |
| 84 | { |
| 85 | #if HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC |
| 86 | st->st_atim.tv_nsec = -1; |
| 87 | #endif |
| 88 | return st; |
| 89 | } |
| 90 | |
| 91 | /* Return 1 if FILE is an unwritable non-symlink, |
| 92 | 0 if it is writable or some other type of file, |