wut/libraries/wutdevoptab/devoptab_fs_getmtime.c

10 lines
188 B
C
Raw Normal View History

#include "devoptab_fs.h"
2018-05-27 12:11:45 +01:00
int
__wut_fs_getmtime(const char *name,
uint64_t *mtime)
2018-05-27 12:11:45 +01:00
{
// TODO: Last modified time can probably be get via FSGetStatFile
return -1;
}