mirror of
https://github.com/wiiu-env/libmocha.git
synced 2024-11-12 15:05:06 +01:00
9 lines
192 B
C++
9 lines
192 B
C++
#include "devoptab_fsa.h"
|
|
|
|
int __fsa_utimes(struct _reent *r,
|
|
const char *filename,
|
|
const struct timeval times[2]) {
|
|
r->_errno = ENOSYS;
|
|
return -1;
|
|
}
|