summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/hosted/filesystem-win32.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/target/hosted/filesystem-win32.c b/firmware/target/hosted/filesystem-win32.c
index be95134cc9..fac10d003b 100644
--- a/firmware/target/hosted/filesystem-win32.c
+++ b/firmware/target/hosted/filesystem-win32.c
@@ -462,6 +462,13 @@ int os_relate(const char *ospath1, const char *ospath2)
462 return rc; 462 return rc;
463} 463}
464 464
465int os_modtime(const char *path, time_t modtime)
466{
467 (void)path;
468 (void)modtime;
469 return 0;
470}
471
465void volume_size(IF_MV(int volume,) unsigned long *sizep, unsigned long *freep) 472void volume_size(IF_MV(int volume,) unsigned long *sizep, unsigned long *freep)
466{ 473{
467 ULARGE_INTEGER free = { .QuadPart = 0 }, 474 ULARGE_INTEGER free = { .QuadPart = 0 },