win32: Add a stub for os_modtime() to make sim builds happy
Change-Id: Iea90776df2a92777c8e07c5a6b6635b6734d6690
This commit is contained in:
parent
412e76b487
commit
38b2648f48
1 changed files with 7 additions and 0 deletions
|
@ -462,6 +462,13 @@ int os_relate(const char *ospath1, const char *ospath2)
|
|||
return rc;
|
||||
}
|
||||
|
||||
int os_modtime(const char *path, time_t modtime)
|
||||
{
|
||||
(void)path;
|
||||
(void)modtime;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void volume_size(IF_MV(int volume,) unsigned long *sizep, unsigned long *freep)
|
||||
{
|
||||
ULARGE_INTEGER free = { .QuadPart = 0 },
|
||||
|
|
Loading…
Reference in a new issue