The toolchain doesn't have utime defined, so these calls will fail.
srctime.actime = stats->st_atime;
srctime.modtime = stats->st_mtime;
(void)flac_chmod(filename, stats->st_mode);
+#if !defined _3DS
(void)flac_utime(filename, &srctime);
+#endif
+
#if !defined _MSC_VER && !defined __BORLANDC__ && !defined __MINGW32__
FLAC_CHECK_RETURN(chown(filename, stats->st_uid, -1));
FLAC_CHECK_RETURN(chown(filename, -1, stats->st_gid));
srctime.actime = srcstat.st_atime;
srctime.modtime = srcstat.st_mtime;
(void)flac_chmod(destpath, srcstat.st_mode);
+#if !defined _3DS
(void)flac_utime(destpath, &srctime);
+#endif
}
}