mirror of
https://github.com/wiiu-env/libmocha.git
synced 2026-03-22 02:14:46 -05:00
10 lines
233 B
C++
10 lines
233 B
C++
#include "devoptab_fs.h"
|
|
|
|
int __fsa_utimes(struct _reent *r,
|
|
const char *filename,
|
|
const struct timeval times[2]) {
|
|
// TODO: FSChangeMode and FSStatFile?
|
|
r->_errno = ENOSYS;
|
|
return -1;
|
|
}
|