#[cfg(not(windows))]
use crate::fs::set_times_nofollow_impl;
use crate::fs::{set_times_impl, FollowSymlinks, SystemTimeSpec};
use std::{fs, io, path::Path};
#[inline]
pub fn set_times(
start: &fs::File,
path: &Path,
atime: Option<SystemTimeSpec>,
mtime: Option<SystemTimeSpec>,
follow: FollowSymlinks,
) -> io::Result<()> {
set_times_impl(start, path, atime, mtime, follow)
}
#[inline]
#[cfg(not(windows))]
pub(crate) fn set_times_nofollow(
start: &fs::File,
path: &Path,
atime: Option<SystemTimeSpec>,
mtime: Option<SystemTimeSpec>,
) -> io::Result<()> {
set_times_nofollow_impl(start, path, atime, mtime)
}