| 498 | |
| 499 | /* Platform-portable mtime_ns (mirrors pipeline_incremental.c). */ |
| 500 | static int64_t sig_stat_mtime_ns(const struct stat *st) { |
| 501 | #ifdef __APPLE__ |
| 502 | return ((int64_t)st->st_mtimespec.tv_sec * NS_PER_SEC) + (int64_t)st->st_mtimespec.tv_nsec; |
| 503 | #elif defined(_WIN32) |
no outgoing calls
no test coverage detected